From d04f604fd35379e8f9c1244c7afda0c524782cc6 Mon Sep 17 00:00:00 2001 From: Brian Candler Date: Thu, 14 Dec 2017 20:39:09 +0000 Subject: [PATCH] Change order of flags in Makefile so that crackcheck builds under Ubuntu Signed-off-by: Brian Candler --- examples/auth/crackcheck/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/auth/crackcheck/Makefile b/examples/auth/crackcheck/Makefile index 84377aafefe..edc764529b3 100644 --- a/examples/auth/crackcheck/Makefile +++ b/examples/auth/crackcheck/Makefile @@ -15,7 +15,7 @@ OBJS = crackcheck.o LIBS = -lcrack crackcheck: $(OBJS) - $(CC) $(CFLAGS) $(LIBS) -o crackcheck $(OBJS) + $(CC) $(CFLAGS) -o crackcheck $(OBJS) $(LIBS) clean: rm -f core *.o crackcheck