Description: use LDFLAGS during linking
The custom Makefile quotatool uses, doesn't use the LDFLAGS environment
variable.  This patch fixes that.

--- quotatool-1.6.2.orig/Makefile
+++ quotatool-1.6.2/Makefile
@@ -58,7 +58,7 @@ subdirs    :=   src
 # compile the program (and the objects)
 all: $(prog)
 $(prog): $(objs)
-	$(CC) -o $(prog) $(objs) $(libs) $(CFLAGS)
+	$(CC) -o $(prog) $(objs) $(libs) $(CFLAGS) $(LDFLAGS)
 
 
 
