Author: nbd Date: 2015-10-05 16:11:25 +0200 (Mon, 05 Oct 2015) New Revision: 47138
Modified: trunk/include/prereq-build.mk Log: build: use host cflags/ldflags for openssl prereq check Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/include/prereq-build.mk =================================================================== --- trunk/include/prereq-build.mk 2015-10-05 11:34:16 UTC (rev 47137) +++ trunk/include/prereq-build.mk 2015-10-05 14:11:25 UTC (rev 47138) @@ -74,7 +74,7 @@ $(eval $(call TestHostCommand,libssl, \ Please install the openssl library (with development headers), \ 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, \ Please install the Perl Thread::Queue module, \ _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
