diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
commit | 8d6f14a9b2d73e9a9cbd3f785b162547d769b53a (patch) | |
tree | 90ea645cc70e1ef2db1513c426e5aeb6eb33f840 /print | |
parent | ln -> ${LN} (diff) |
sed -> ${SED}
Notes
Notes:
svn path=/head/; revision=21048
Diffstat (limited to 'print')
-rw-r--r-- | print/makeindex/Makefile | 4 | ||||
-rw-r--r-- | print/pbm2ppa/Makefile | 6 | ||||
-rw-r--r-- | print/pnm2ppa/Makefile | 6 | ||||
-rw-r--r-- | print/tex/Makefile | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/print/makeindex/Makefile b/print/makeindex/Makefile index ca9e5a594a91..11dcb1425bb2 100644 --- a/print/makeindex/Makefile +++ b/print/makeindex/Makefile @@ -3,7 +3,7 @@ # Date created: 12 October 1994 # Whom: jmz # -# $Id: Makefile,v 1.10 1996/11/22 11:11:38 asami Exp $ +# $Id: Makefile,v 1.11 1997/02/18 16:57:16 jmz Exp $ # DISTNAME= makeindex-3.0.8 @@ -25,7 +25,7 @@ do-install: @(cd ${WRKSRC}/src-3.0/regexp; make) @(cd ${WRKSRC}/src-3.0; make install) @(cd ${WRKSRC}/doc; \ - sed -e s:/usr/local/lib/tex/macros/:${PREFIX}/share/texmf/makeindx/: \ + ${SED} -e s:/usr/local/lib/tex/macros/:${PREFIX}/share/texmf/makeindx/: \ <makeindex.l >makeindex.1; \ ${INSTALL_DATA} makeindex.1 ${PREFIX}/man/man1/) diff --git a/print/pbm2ppa/Makefile b/print/pbm2ppa/Makefile index 37e47b5a84a4..7a0b54c4dbd5 100644 --- a/print/pbm2ppa/Makefile +++ b/print/pbm2ppa/Makefile @@ -3,7 +3,7 @@ # Date created: 18 November 1998 # Whom: smace@freebsd.org # -# $Id: Makefile,v 1.4 1999/05/10 02:39:19 smace Exp $ +# $Id: Makefile,v 1.5 1999/08/23 04:23:52 mharo Exp $ # DISTNAME= ppa-0.8.6 @@ -38,8 +38,8 @@ pre-configure: .endif do-install: - sed s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter - sed s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter + ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter + ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter cd ${WRKSRC} && \ (${INSTALL_PROGRAM} pbm2ppa pbmtpg \ ${PREFIX}/bin; \ diff --git a/print/pnm2ppa/Makefile b/print/pnm2ppa/Makefile index 37e47b5a84a4..7a0b54c4dbd5 100644 --- a/print/pnm2ppa/Makefile +++ b/print/pnm2ppa/Makefile @@ -3,7 +3,7 @@ # Date created: 18 November 1998 # Whom: smace@freebsd.org # -# $Id: Makefile,v 1.4 1999/05/10 02:39:19 smace Exp $ +# $Id: Makefile,v 1.5 1999/08/23 04:23:52 mharo Exp $ # DISTNAME= ppa-0.8.6 @@ -38,8 +38,8 @@ pre-configure: .endif do-install: - sed s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter - sed s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter + ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter + ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter cd ${WRKSRC} && \ (${INSTALL_PROGRAM} pbm2ppa pbmtpg \ ${PREFIX}/bin; \ diff --git a/print/tex/Makefile b/print/tex/Makefile index a585e6a2d5ba..f39c160dbe06 100644 --- a/print/tex/Makefile +++ b/print/tex/Makefile @@ -3,7 +3,7 @@ # Date created: 29 September 1994 # Whom: jmz # -# $Id: Makefile,v 1.33 1999/01/29 03:09:05 jmz Exp $ +# $Id: Makefile,v 1.34 1999/08/23 04:23:37 mharo Exp $ # DISTNAME= web2c-7.1 @@ -24,7 +24,7 @@ USE_GMAKE= yes MAKE_FLAGS= fmts= all_mems= do-build: - @(cd ${WRKSRC}; unset `env|${GREP} ^TEX|sed -e s/=.*//`; \ + @(cd ${WRKSRC}; unset `env|${GREP} ^TEX|${SED} -e s/=.*//`; \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${ALL_TARGET}) post-install: |