1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

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
This commit is contained in:
Brian Candler 2017-12-14 20:39:09 +00:00 committed by Andrew Bartlett
parent 49c1c0c38b
commit f183fd3283

View File

@ -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