diff options
author | max <max@FreeBSD.org> | 1997-07-14 02:49:31 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-07-14 02:49:31 +0800 |
commit | d9b38f789b2ef353caeb3131574a8a7d00e6eb17 (patch) | |
tree | 90fa7ca1dda4490c9b02cdbbb089050298c3c37d /lang/modula-3-lib | |
parent | 0a12895c5a1bf7189d7dac551c80f5cec3336367 (diff) | |
download | freebsd-ports-gnome-d9b38f789b2ef353caeb3131574a8a7d00e6eb17.tar.gz freebsd-ports-gnome-d9b38f789b2ef353caeb3131574a8a7d00e6eb17.tar.zst freebsd-ports-gnome-d9b38f789b2ef353caeb3131574a8a7d00e6eb17.zip |
/bin/sh -> ${SH}
Diffstat (limited to 'lang/modula-3-lib')
-rw-r--r-- | lang/modula-3-lib/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/modula-3-lib/Makefile b/lang/modula-3-lib/Makefile index 43e721b704a9..e60125cef58f 100644 --- a/lang/modula-3-lib/Makefile +++ b/lang/modula-3-lib/Makefile @@ -3,7 +3,7 @@ # Date created: 28 Oct 1996 # Whom: John Polstra <jdp@polstra.com> # -# $Id: Makefile,v 1.6 1997/03/28 04:38:43 jdp Exp $ +# $Id: Makefile,v 1.7 1997/04/30 03:18:04 asami Exp $ # DISTNAME= modula-3-lib-3.6 @@ -61,12 +61,12 @@ temp_prefix= ${WRKSRC}/installed post-extract: .if !empty(have_boot) @echo "Copying bootstrap modula-3 compiler from ${have_boot}" - @/bin/sh ${SCRIPTDIR}/copy_files ${FILESDIR}/T.boot installed \ + @${SH} ${SCRIPTDIR}/copy_files ${FILESDIR}/T.boot installed \ ${have_boot} ${WRKSRC} .endif .if !empty(have_gcc) @echo "Copying gcc sources from ${have_gcc}" - @/bin/sh ${SCRIPTDIR}/copy_files ${FILESDIR}/T.gcc m3cc \ + @${SH} ${SCRIPTDIR}/copy_files ${FILESDIR}/T.gcc m3cc \ ${have_gcc} ${WRKSRC} .endif @cd ${WRKSRC}/m3cc/gcc; \ @@ -110,7 +110,7 @@ do-build: pre-install: @echo "Checking for conflicting shared libraries" - @PREFIX=${PREFIX} /bin/sh ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL + @PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL do-install: @echo "Installing shared libraries" |