diff options
author | jlam <jlam> | 2001-07-14 15:38:19 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-07-14 15:38:19 +0000 |
commit | b2588231c97c725f574041adcfaa7bf4615641da (patch) | |
tree | 80b92f89eb4077939db3198d25c78905f19c8f03 | |
parent | ec55246e435a75f2545410cfaf3b164965b8edf9 (diff) | |
download | pkgsrc-b2588231c97c725f574041adcfaa7bf4615641da.tar.gz |
Use a shell loop instead of a make .for loop. This avoids using FILE
as a make variable and might fix pkg/13362.
-rw-r--r-- | print/ghostscript-nox11/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/ghostscript-nox11/Makefile.common b/print/ghostscript-nox11/Makefile.common index e220d146fe8..1051832afdd 100644 --- a/print/ghostscript-nox11/Makefile.common +++ b/print/ghostscript-nox11/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.16 2001/06/11 02:05:14 jlam Exp $ +# $NetBSD: Makefile.common,v 1.17 2001/07/14 15:38:19 jlam Exp $ DISTNAME= ghostscript-${GS_VERS} GS_VERS= 6.01 @@ -145,9 +145,9 @@ HTML_DIR= ${PREFIX}/share/doc/html/ghostscript LIB_DIR= ${GSINST_DIR}/lib post-extract: -.for FILE in ${EXTRACT_LIST} - cd ${WRKDIR}; ${PAX} -zrf ${_DISTDIR}/${FILE} -.endfor + @cd ${WRKDIR}; for file in ${EXTRACT_LIST}; do \ + ${PAX} -zrf ${_DISTDIR}/$${file} + done cd ${WRKSRC}/src; ${PAX} -rf ${WRKDIR}/${HPDJ_DRV}/hpdj.tar ${MV} ${WRKSRC}/src/gs-hpdj.1 ${WRKSRC}/man cd ${WRKDIR}; ${CP} gdevdmpr.c gdevdmpr.mak ${WRKSRC}/src |