projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c528917
)
build system: remove bogus $(1) in last commit
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 11 Mar 2012 11:17:20 +0000
(12:17 +0100)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 11 Mar 2012 11:17:20 +0000
(12:17 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Makefile.flags
patch
|
blob
|
history
diff --git
a/Makefile.flags
b/Makefile.flags
index 2c826bac191c94e8f0954ba288cc2128095bde28..f745c2fdfed0ff4ece40fbd0a415d242cdad2437 100644
(file)
--- a/
Makefile.flags
+++ b/
Makefile.flags
@@
-105,7
+105,7
@@
export SYSROOT=$(CONFIG_SYSROOT)
endif
# Android has no separate crypt library
-CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' | $(CC) $(CFLAGS)
$(1)
-lcrypt -o /dev/null -xc - >/dev/null 2>&1 && echo "y")
+CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc - >/dev/null 2>&1 && echo "y")
ifeq ($(CRYPT_AVAILABLE),y)
LDLIBS += m crypt
else