diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 16:03:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 16:03:10 +0000 |
commit | fc0d5602068709355c852616a3f8d90b3496c3f5 (patch) | |
tree | 0b4a8fb315999cbf9854989137ac5ce632a8f5f8 /package/cyassl/patches/100-makefile_dollar_make.patch | |
parent | 2cf4946597e5a6ba55ca40359494bc5732c1b9e3 (diff) | |
download | upstream-fc0d5602068709355c852616a3f8d90b3496c3f5.tar.gz upstream-fc0d5602068709355c852616a3f8d90b3496c3f5.tar.bz2 upstream-fc0d5602068709355c852616a3f8d90b3496c3f5.zip |
add cyassl (moved from packages feed, required by uhttpd-mod-tls)
SVN-Revision: 20430
Diffstat (limited to 'package/cyassl/patches/100-makefile_dollar_make.patch')
-rw-r--r-- | package/cyassl/patches/100-makefile_dollar_make.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/cyassl/patches/100-makefile_dollar_make.patch b/package/cyassl/patches/100-makefile_dollar_make.patch new file mode 100644 index 0000000000..d5bb3b0aef --- /dev/null +++ b/package/cyassl/patches/100-makefile_dollar_make.patch @@ -0,0 +1,22 @@ +--- a/Makefile.am ++++ b/Makefile.am +@@ -4,7 +4,7 @@ EXTRA_DIST = cyassl.dsp cyassl.dsw certs + doc/*.pdf + + basic: +- cd src; make; cd ../testsuite; make; cd ../ ++ cd src; $(MAKE); cd ../testsuite; $(MAKE); cd ../ + + openssl-links: + cd lib; ln -s ../src/.libs/libcyassl.a libcrypto.a; \ +--- a/Makefile.in ++++ b/Makefile.in +@@ -638,7 +638,7 @@ uninstall-am: + + + basic: +- cd src; make; cd ../testsuite; make; cd ../ ++ cd src; $(MAKE); cd ../testsuite; $(MAKE); cd ../ + + openssl-links: + cd lib; ln -s ../src/.libs/libcyassl.a libcrypto.a; \ |