diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
commit | 4ea1177771960cdf6cbcee78db1b8afa6d678858 (patch) | |
tree | 58e7abcdb7f57e16ff96f071c49c88244a440598 /math | |
parent | fa1d1e4d83108ff37c97627528c2face622cdd11 (diff) | |
download | FreeBSD-ports-4ea1177771960cdf6cbcee78db1b8afa6d678858.zip FreeBSD-ports-4ea1177771960cdf6cbcee78db1b8afa6d678858.tar.gz |
sed -> ${SED}
Diffstat (limited to 'math')
-rw-r--r-- | math/snns/Makefile | 2 | ||||
-rw-r--r-- | math/xmgr/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/math/snns/Makefile b/math/snns/Makefile index 6441609..f999c9f 100644 --- a/math/snns/Makefile +++ b/math/snns/Makefile @@ -17,7 +17,7 @@ USE_XLIB= yes post-configure: @(cd ${WRKSRC} && ./configure < options.FreeBSD) - @(sed -e "s#%prefix%#${PREFIX}#g" < ${FILESDIR}/snns > ${WRKSRC}/snns) + @(${SED} -e "s#%prefix%#${PREFIX}#g" < ${FILESDIR}/snns > ${WRKSRC}/snns) do-build: @(cd ${WRKSRC} && ./build all) diff --git a/math/xmgr/Makefile b/math/xmgr/Makefile index d892945..438fd9a 100644 --- a/math/xmgr/Makefile +++ b/math/xmgr/Makefile @@ -3,7 +3,7 @@ # Date created: So 2 Mär 1997 12:11:43 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.14 1999/05/12 07:46:53 asami Exp $ +# $Id: Makefile,v 1.15 1999/08/22 18:59:08 mharo Exp $ # DISTNAME= xmgr-4.1.1 @@ -32,7 +32,7 @@ INSTALL_TARGET= install links post-patch: mv ${WRKSRC}/configure ${WRKSRC}/configure.input - sed "s%__MOTIFLIB__%${MOTIFLIB}%" ${WRKSRC}/configure.input > ${WRKSRC}/configure + ${SED} "s%__MOTIFLIB__%${MOTIFLIB}%" ${WRKSRC}/configure.input > ${WRKSRC}/configure rm -f ${WRKSRC}/configure.input ${CHMOD} 755 ${WRKSRC}/configure |