summaryrefslogtreecommitdiff
path: root/openwrt/package/expat/patches/001-destdir.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
commitd58a09110ccfa95f06c983fe796806f2e035c9d2 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /openwrt/package/expat/patches/001-destdir.patch
parentaf034797eeb62b62ac05442d5a688b28ccd0f16b (diff)
downloadmtk-20170518-d58a09110ccfa95f06c983fe796806f2e035c9d2.zip
mtk-20170518-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.gz
mtk-20170518-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.bz2
move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the developers are ready
SVN-Revision: 4944
Diffstat (limited to 'openwrt/package/expat/patches/001-destdir.patch')
-rw-r--r--openwrt/package/expat/patches/001-destdir.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/openwrt/package/expat/patches/001-destdir.patch b/openwrt/package/expat/patches/001-destdir.patch
deleted file mode 100644
index dc1f36a..0000000
--- a/openwrt/package/expat/patches/001-destdir.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-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: