diff options
author | Mats Lidell <matsl@gentoo.org> | 2014-04-18 01:35:23 +0200 |
---|---|---|
committer | Mats Lidell <matsl@gentoo.org> | 2014-04-18 01:35:23 +0200 |
commit | ef100e80f2f81f8899ed0f8e0f16f54dde0faab4 (patch) | |
tree | c729020f345ab7899a0d1022189b1eff75af8d70 /app-editors/xemacs/files | |
parent | Merge changes from Portage tree. (diff) | |
download | emacs-ef100e80f2f81f8899ed0f8e0f16f54dde0faab4.tar.gz emacs-ef100e80f2f81f8899ed0f8e0f16f54dde0faab4.tar.bz2 emacs-ef100e80f2f81f8899ed0f8e0f16f54dde0faab4.zip |
Avoid problem with installed elisp files in rebuilds by using DESTDIR together with using
without-prefix option. xemacs will in runtime find the elisp packages anyway.
Package-Manager: portage-2.2.8-r1
Diffstat (limited to 'app-editors/xemacs/files')
-rw-r--r-- | app-editors/xemacs/files/xemacs-21.5.34-destdir.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app-editors/xemacs/files/xemacs-21.5.34-destdir.patch b/app-editors/xemacs/files/xemacs-21.5.34-destdir.patch new file mode 100644 index 0000000..c671eee --- /dev/null +++ b/app-editors/xemacs/files/xemacs-21.5.34-destdir.patch @@ -0,0 +1,13 @@ +diff -r 66bbea0adac4 Makefile.in.in +--- a/Makefile.in.in Mon Apr 07 08:55:10 2014 +0200 ++++ b/Makefile.in.in Tue Apr 08 00:02:42 2014 +0200 +@@ -408,7 +408,7 @@ + fi; \ + ${INSTALL_DATA} lib-src/config.values $(DESTDIR)${docdir}/config.values; \ + ${INSTALL_DATA} lib-src/DOC $(DESTDIR)${docdir}/DOC; \ +- for subdir in `find ${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; \ ++ for subdir in `find $(DESTDIR)${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; \ + do (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; done ; \ + else true; fi + #if (defined(PDUMP) && !defined (DUMP_IN_EXEC)) || (defined (PDUMP) && defined(WIN32_NATIVE)) + |