diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 01:52:21 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 01:52:21 +0000 |
commit | 17314cf2c355c83b78c65fb1fa52027a3db2ca2a (patch) | |
tree | add4006977914381bde3d99d909741eb214eb790 /editors/xemacs21 | |
parent | Fix package building errors. (diff) |
echo -> ${ECHO}/${ECHO_MSG}
ln -> ${LN}
Diffstat (limited to 'editors/xemacs21')
-rw-r--r-- | editors/xemacs21/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
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 |