From 975478f2e57a16a84381582bbbd63f75b783f89e Mon Sep 17 00:00:00 2001 From: Matthias Ruester Date: Thu, 2 Aug 2012 09:57:59 +0200 Subject: [PATCH] Makefile: remove compile option -lcrypt from bee-cache-inventory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 25f3239..b866937 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ beeflock: $(addprefix src/, ${BEEFLOCK_OBJECTS}) $(call quiet-command,${CC} ${LDFLAGS} -o $@ $^,"LD $@") bee-cache-inventory: $(addprefix src/, ${BEECACHEINVENTORY_OBJECTS}) - $(call quiet-command,${CC} ${LDFLAGS} -lcrypt -o $@ $^,"LD $@") + $(call quiet-command,${CC} ${LDFLAGS} -o $@ $^,"LD $@") %.o: %.c $(call quiet-command,${CC} ${CFLAGS} -o $@ -c $^,"CC $@")