Browse Source

build: use host cflags/ldflags for openssl prereq check

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 47138
Felix Fietkau 10 years ago
parent
commit
9e670fcf9d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/prereq-build.mk

+ 1 - 1
include/prereq-build.mk

@@ -74,7 +74,7 @@ $(eval $(call TestHostCommand,zlib, \
 $(eval $(call TestHostCommand,libssl, \
 $(eval $(call TestHostCommand,libssl, \
 	Please install the openssl library (with development headers), \
 	Please install the openssl library (with development headers), \
 	echo 'int main(int argc, char **argv) { SSL_library_init(); return 0; }' | \
 	echo 'int main(int argc, char **argv) { SSL_library_init(); return 0; }' | \
-		gcc -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl))
+		gcc $(HOST_CFLAGS) -include openssl/ssl.h -x c -o $(TMP_DIR)/a.out - -lcrypto -lssl $(HOST_LDFLAGS)))
 
 
 $(eval $(call TestHostCommand,perl-thread-queue, \
 $(eval $(call TestHostCommand,perl-thread-queue, \
 	Please install the Perl Thread::Queue module, \
 	Please install the Perl Thread::Queue module, \