Skip to content

Commit

Permalink
Change order of flags in Makefile so that crackcheck builds under Ubuntu
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Candler <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
Reviewed-by: Douglas Bagnall <[email protected]>

Autobuild-User(master): Andrew Bartlett <[email protected]>
Autobuild-Date(master): Fri Dec 14 04:13:38 CET 2018 on sn-devel-144
  • Loading branch information
candlerb authored and abartlet committed Dec 14, 2018
1 parent 49c1c0c commit f183fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/auth/crackcheck/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f183fd3

Please sign in to comment.