summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>1999-08-28 01:52:21 +0000
committerMichael Haro <mharo@FreeBSD.org>1999-08-28 01:52:21 +0000
commit17314cf2c355c83b78c65fb1fa52027a3db2ca2a (patch)
treeadd4006977914381bde3d99d909741eb214eb790
parentFix package building errors. (diff)
echo -> ${ECHO}/${ECHO_MSG}
ln -> ${LN}
Notes
Notes: svn path=/head/; revision=21046
-rw-r--r--editors/xemacs-devel/Makefile14
-rw-r--r--editors/xemacs/Makefile14
-rw-r--r--editors/xemacs21/Makefile14
3 files changed, 21 insertions, 21 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile
index b1372dee76ee..6b616cb56e15 100644
--- a/editors/xemacs-devel/Makefile
+++ b/editors/xemacs-devel/Makefile
@@ -48,15 +48,15 @@ PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH}
# Have
pre-fetch:
.if !defined(USE_MULE)
- @echo "To compile in the MULE features, set the environment variable USE_MULE"
+ @${ECHO_MSG} "To compile in the MULE features, set the environment variable USE_MULE"
.endif
.if defined(HAVE_MOTIF)
.if !defined(MOTIF_STATIC)
- @echo ""
- @echo "If your MOTIF library is actually lesstif, you might occasionally"
- @echo "experience locked-up frames."
- @echo "In this case, set the environment variable MOTIF_STATIC and recompile, "
- @echo "which will force the use of athena widgets for dialogs."
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally"
+ @${ECHO_MSG} "experience locked-up frames."
+ @${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, "
+ @${ECHO_MSG} "which will force the use of athena widgets for dialogs."
.endif
.endif
@@ -79,7 +79,7 @@ WITH_OFFIX?= --with-offix=no
.endif
post-install:
- ln -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
+ ${LN} -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
.for file in b2m ctags etags gnuclient xemacs-${XEMACS_VER}
strip ${PREFIX}/bin/${file}
.endfor
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile
index b1372dee76ee..6b616cb56e15 100644
--- a/editors/xemacs/Makefile
+++ b/editors/xemacs/Makefile
@@ -48,15 +48,15 @@ PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH}
# Have
pre-fetch:
.if !defined(USE_MULE)
- @echo "To compile in the MULE features, set the environment variable USE_MULE"
+ @${ECHO_MSG} "To compile in the MULE features, set the environment variable USE_MULE"
.endif
.if defined(HAVE_MOTIF)
.if !defined(MOTIF_STATIC)
- @echo ""
- @echo "If your MOTIF library is actually lesstif, you might occasionally"
- @echo "experience locked-up frames."
- @echo "In this case, set the environment variable MOTIF_STATIC and recompile, "
- @echo "which will force the use of athena widgets for dialogs."
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally"
+ @${ECHO_MSG} "experience locked-up frames."
+ @${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, "
+ @${ECHO_MSG} "which will force the use of athena widgets for dialogs."
.endif
.endif
@@ -79,7 +79,7 @@ WITH_OFFIX?= --with-offix=no
.endif
post-install:
- ln -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
+ ${LN} -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
.for file in b2m ctags etags gnuclient xemacs-${XEMACS_VER}
strip ${PREFIX}/bin/${file}
.endfor
diff --git a/editors/xemacs21/Makefile b/editors/xemacs21/Makefile
index b1372dee76ee..6b616cb56e15 100644
--- a/editors/xemacs21/Makefile
+++ b/editors/xemacs21/Makefile
@@ -48,15 +48,15 @@ PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH}
# Have
pre-fetch:
.if !defined(USE_MULE)
- @echo "To compile in the MULE features, set the environment variable USE_MULE"
+ @${ECHO_MSG} "To compile in the MULE features, set the environment variable USE_MULE"
.endif
.if defined(HAVE_MOTIF)
.if !defined(MOTIF_STATIC)
- @echo ""
- @echo "If your MOTIF library is actually lesstif, you might occasionally"
- @echo "experience locked-up frames."
- @echo "In this case, set the environment variable MOTIF_STATIC and recompile, "
- @echo "which will force the use of athena widgets for dialogs."
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally"
+ @${ECHO_MSG} "experience locked-up frames."
+ @${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, "
+ @${ECHO_MSG} "which will force the use of athena widgets for dialogs."
.endif
.endif
@@ -79,7 +79,7 @@ WITH_OFFIX?= --with-offix=no
.endif
post-install:
- ln -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
+ ${LN} -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21
.for file in b2m ctags etags gnuclient xemacs-${XEMACS_VER}
strip ${PREFIX}/bin/${file}
.endfor