aboutsummaryrefslogtreecommitdiffstats
path: root/package/expat/patches
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-08-14 04:24:44 +0000
committerNicolas Thill <nico@openwrt.org>2005-08-14 04:24:44 +0000
commitc3e3f79ef4bfaea9558ecb7a32d8591f2796e430 (patch)
tree49e3aa075b004865ed3af75ff612c21828dddaee /package/expat/patches
parent031bda20037e9bd73eca5625c9230dcf93ec4af5 (diff)
downloadmaster-187ad058-c3e3f79ef4bfaea9558ecb7a32d8591f2796e430.tar.gz
master-187ad058-c3e3f79ef4bfaea9558ecb7a32d8591f2796e430.tar.bz2
master-187ad058-c3e3f79ef4bfaea9558ecb7a32d8591f2796e430.zip
add expat package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1656 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/expat/patches')
-rw-r--r--package/expat/patches/001-destdir.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/package/expat/patches/001-destdir.patch b/package/expat/patches/001-destdir.patch
new file mode 100644
index 0000000000..dc1f36a169
--- /dev/null
+++ b/package/expat/patches/001-destdir.patch
@@ -0,0 +1,44 @@
+diff -ruN expat-1.95.8-orig/Makefile.in expat-1.95.8-1/Makefile.in
+--- expat-1.95.8-orig/Makefile.in 2004-05-07 22:00:48.000000000 +0200
++++ expat-1.95.8-1/Makefile.in 2005-04-04 22:53:09.000000000 +0200
+@@ -34,6 +34,8 @@
+
+ top_builddir = .
+
++DESTDIR =
++
+
+ INSTALL = @INSTALL@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+@@ -73,22 +75,22 @@
+ tests/runtests
+
+ install: xmlwf/xmlwf installlib
+- $(mkinstalldirs) $(bindir) $(man1dir)
+- $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf/xmlwf $(bindir)/xmlwf
+- $(INSTALL_DATA) $(MANFILE) $(man1dir)
++ $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
++ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf/xmlwf $(DESTDIR)$(bindir)/xmlwf
++ $(INSTALL_DATA) $(MANFILE) $(DESTDIR)$(man1dir)
+
+ installlib: $(LIBRARY) $(APIHEADER)
+- $(mkinstalldirs) $(libdir) $(includedir)
+- $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(libdir)/$(LIBRARY)
+- $(INSTALL_DATA) $(APIHEADER) $(includedir)
++ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
++ $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY)
++ $(INSTALL_DATA) $(APIHEADER) $(DESTDIR)$(includedir)
+
+ uninstall: uninstalllib
+- $(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf
++ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/xmlwf
+ rm -f $(man1dir)/xmlwf.1
+
+ uninstalllib:
+- $(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(LIBRARY)
+- rm -f $(includedir)/$(APIHEADER)
++ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(LIBRARY)
++ rm -f $(DESTDIR)$(includedir)/$(APIHEADER)
+
+ # for VPATH builds (invoked by configure)
+ mkdir-init: