aboutsummaryrefslogtreecommitdiff
path: root/Makefile.flags
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-03-11 12:17:20 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-03-11 12:17:20 +0100
commit65457625a7a6c8939e46d01a4cda566d82ed5343 (patch)
tree71e7f0baafdcbca4e75fbb41644dd662b0d6ddee /Makefile.flags
parentc528917195498e03c8b776bbcfee4f41ea3a818f (diff)
downloadbusybox-65457625a7a6c8939e46d01a4cda566d82ed5343.tar.gz
build system: remove bogus $(1) in last commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Makefile.flags')
-rw-r--r--Makefile.flags2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.flags b/Makefile.flags
index 2c826bac1..f745c2fdf 100644
--- 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