mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
46 lines
1.9 KiB
Plaintext
46 lines
1.9 KiB
Plaintext
$NetBSD: patch-ae,v 1.1 2013/02/17 04:59:42 dholland Exp $
|
|
|
|
--- Makefile.in.orig 2010-04-04 07:26:08.000000000 +0900
|
|
+++ Makefile.in 2010-05-14 21:51:03.000000000 +0900
|
|
@@ -141,7 +141,7 @@
|
|
infodir=@infodir@
|
|
INFO_FILES=ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse \
|
|
ede ediff edt eieio efaq eintr elisp emacs emacs-mime epa erc \
|
|
- eshell eudc flymake forms gnus idlwave info mairix-el \
|
|
+ eshell eudc flymake forms gnus idlwave mairix-el \
|
|
message mh-e newsticker nxml-mode org pcl-cvs pgg rcirc \
|
|
reftex remember sasl sc semantic ses sieve smtpmail speedbar \
|
|
tramp url vip viper widget woman
|
|
@@ -403,7 +403,7 @@
|
|
install: all install-arch-indep install-arch-dep install-leim blessmail
|
|
@true
|
|
|
|
-MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
|
|
+MV_DIRS = for i in $$dir; do if test -e $$i ; then rm -fr `basename "$$i"` ; mv "$$i" . ; fi; done
|
|
|
|
### Install the executables that were compiled specifically for this machine.
|
|
### It would be nice to do something for a parallel make
|
|
@@ -574,21 +574,11 @@
|
|
test "$(MAKEINFO)" = "off" && ! test -e $$elt && continue; \
|
|
for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
|
|
${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \
|
|
- chmod a+r $(DESTDIR)${infodir}/$$f; \
|
|
done; \
|
|
done); \
|
|
else true; fi
|
|
-unset CDPATH; \
|
|
- thisdir=`/bin/pwd`; \
|
|
- if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \
|
|
- then \
|
|
- for elt in $(INFO_FILES); do \
|
|
- test "$(MAKEINFO)" = "off" && ! test -e $$elt && continue; \
|
|
- (cd $${thisdir}; \
|
|
- ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
|
|
- done; \
|
|
- else true; fi
|
|
- -chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} ${COPYDESTS}
|
|
+ chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} ${COPYDESTS}
|
|
thisdir=`/bin/pwd`; \
|
|
cd ${mansrcdir}; \
|
|
for page in ${MAN_PAGES}; do \
|