diff options
| author | Florian Fainelli | 2009-05-28 11:11:46 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2009-05-28 11:11:46 +0000 |
| commit | cc259ca7225b893869a4e7883fd091a3b0d08a25 (patch) | |
| tree | 871348536a5b358d46e8789fe70d4b81d4993093 | |
| parent | ba6394de3e1927903b99e6c98cf5d2738c9909f0 (diff) | |
| download | archive-cc259ca7225b893869a4e7883fd091a3b0d08a25.tar.gz | |
[package] fix axhttpd installation, patch from Russell Senior
SVN-Revision: 16131
| -rw-r--r-- | libs/axtls/patches/002-axhttpd_install.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libs/axtls/patches/002-axhttpd_install.patch b/libs/axtls/patches/002-axhttpd_install.patch new file mode 100644 index 0000000000..9fa6b31680 --- /dev/null +++ b/libs/axtls/patches/002-axhttpd_install.patch @@ -0,0 +1,16 @@ +diff -ru axtls-1.2.2/Makefile axtls-1.2.2-new/Makefile
+--- axtls-1.2.2/Makefile 2007-12-01 16:42:23.000000000 -0800
++++ axtls-1.2.2-new/Makefile 2009-05-27 22:41:44.000000000 -0700
+@@ -88,8 +88,11 @@
+ install: $(PREFIX) all
+ cp --no-dereference $(STAGE)/libax* $(PREFIX)/lib
+ chmod 755 $(PREFIX)/lib/libax*
++ifdef CONFIG_AXHTTPD
++ install -m 755 $(STAGE)/axhttpd $(PREFIX)/bin
++endif
+ ifdef CONFIG_SAMPLES
+- install -m 755 $(STAGE)/ax* $(PREFIX)/bin
++ install -m 755 $(STAGE)/axssl $(PREFIX)/bin
+ endif
+ ifdef CONFIG_HTTP_HAS_AUTHORIZATION
+ install -m 755 $(STAGE)/htpasswd $(PREFIX)/bin
|