diff options
author | tv <tv@pkgsrc.org> | 2004-04-24 18:24:56 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-04-24 18:24:56 +0000 |
commit | e4e06198301afcb47a6362f341f0f164e8185baf (patch) | |
tree | 032a5905cd349fa410c7c3a24b131f21db52bebb | |
parent | 6ad235f2572a31d3710a4b4b21d00b9697901fad (diff) | |
download | pkgsrc-e4e06198301afcb47a6362f341f0f164e8185baf.tar.gz |
Don't put plain comments in make commands. These can result in a nonzero
shell exit code, and thus a failure.
Move comments out of the list of commands. (Alternately ${DO_NADA} could
have been used.)
-rw-r--r-- | graphics/tiff/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile index c6bf6c9538c..b9ff17b0567 100644 --- a/graphics/tiff/Makefile +++ b/graphics/tiff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2004/03/22 16:48:13 abs Exp $ +# $NetBSD: Makefile,v 1.52 2004/04/24 18:24:56 tv Exp $ DISTNAME= tiff-v3.6.1 PKGNAME= tiff-3.6.1 @@ -57,16 +57,13 @@ CONFIGURE_ENV+= ENVOPTS="${CFLAGS} ${CPPFLAGS}" INSTALLATION_DIRS= share/doc/html +# reference correct relative man page when using .so; +# libtoolize build of TIFF tools post-patch: - # reference correct relative man page when using .so - # ${MV} ${WRKSRC}/man/Makefile.in ${WRKSRC}/man/Makefile.in.in ${SED} -e "s,\$${MANDIR}\(.*\)\.\([0-9]\).,${PREFIX}/man/man\2/\1.\2,g" \ -e "s,\$${MANDIR}\(.*\)\.\([0-9]\),${PREFIX}/man/man\2/\1.\2,g" \ ${WRKSRC}/man/Makefile.in.in > ${WRKSRC}/man/Makefile.in - - # libtoolize build of TIFF tools - # ${MV} ${WRKSRC}/tools/Makefile.in ${WRKSRC}/tools/Makefile.in.in ${SED} -e "s,\(\$${CC} -o\),\$${LIBTOOL} \1,g" \ ${WRKSRC}/tools/Makefile.in.in > ${WRKSRC}/tools/Makefile.in |