mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 12:27:50 -04:00
42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
$NetBSD: patch-ab,v 1.4 2003/02/25 02:14:59 uebayasi Exp $
|
|
|
|
--- lib-src/Makefile.in.in.orig Tue Aug 20 20:34:16 2002
|
|
+++ lib-src/Makefile.in.in
|
|
@@ -237,7 +237,7 @@
|
|
|
|
## Install the internal utilities. Until they are installed, we can
|
|
## just run them directly from lib-src.
|
|
-${archlibdir}: all
|
|
+install-archlibdir: all
|
|
@echo; echo "Installing utilities run internally by XEmacs."
|
|
./make-path ${archlibdir}
|
|
if test "`(cd ${archlibdir} && $(pwd))`" != "`$(pwd)`"; then \
|
|
@@ -248,17 +248,23 @@
|
|
if test "`(cd ${archlibdir} && $(pwd))`" \
|
|
!= "`(cd ${srcdir} && $(pwd))`"; then \
|
|
for f in ${PRIVATE_INSTALLABLE_SCRIPTS}; do \
|
|
- (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$$f ${archlibdir}/$$f); \
|
|
+ (cd .. && $(BSD_INSTALL_SCRIPT) ${srcdir}/$$f ${archlibdir}/$$f); \
|
|
done ; \
|
|
fi
|
|
|
|
-install: ${archlibdir}
|
|
+install: install-archlibdir
|
|
@echo; echo "Installing utilities for users to run."
|
|
for file in ${PUBLIC_INSTALLABLE_EXES} ; do \
|
|
- (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \
|
|
+ if test $${file} = etags || test $${file} = ctags || test $${file} = b2m ; then \
|
|
+ (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/xemacs-$${file}) ; else \
|
|
+ (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \
|
|
+ fi \
|
|
done
|
|
for file in ${PUBLIC_INSTALLABLE_SCRIPTS} ; do \
|
|
- (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \
|
|
+ if test $${file} = rcs-checkin || test $${file} = send-pr ; then \
|
|
+ (cd .. && $(BSD_INSTALL_SCRIPT) ${srcdir}/$${file} ${bindir}/xemacs-$${file}) ; else \
|
|
+ (cd .. && $(BSD_INSTALL_SCRIPT) ${srcdir}/$${file} ${bindir}/$${file}) ; \
|
|
+ fi \
|
|
done
|
|
|
|
uninstall:
|