summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBrian Candler <b.candler@pobox.com>2017-12-14 20:39:09 +0000
committerAndrew Bartlett <abartlet@samba.org>2018-12-14 04:13:38 +0100
commitf183fd328314d90a92659720adebf034917962ec (patch)
treee63cf3da9d8fe3590af12d5346d9558c6dbe279f /examples
parent49c1c0c38bc572d1b543a3e71e8beb4677d5c4a0 (diff)
downloadsamba-f183fd328314d90a92659720adebf034917962ec.tar.gz
Change order of flags in Makefile so that crackcheck builds under Ubuntu
Signed-off-by: Brian Candler <b.candler@pobox.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Fri Dec 14 04:13:38 CET 2018 on sn-devel-144
Diffstat (limited to 'examples')
-rw-r--r--examples/auth/crackcheck/Makefile2
1 files changed, 1 insertions, 1 deletions
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