diff options
author | tron <tron@pkgsrc.org> | 1999-03-29 23:31:08 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-03-29 23:31:08 +0000 |
commit | 975278f2dbff8252e1e84c98c6487f5e69d640ff (patch) | |
tree | 0a13183f8e149f0ef26dd38fa904a563ee96e57d /devel/ptl2 | |
parent | 864c104eb69103b28c4613b692273cea827ffd0f (diff) | |
download | pkgsrc-975278f2dbff8252e1e84c98c6487f5e69d640ff.tar.gz |
Remove commented out instructions and fix botch caused by pkglinting.
Diffstat (limited to 'devel/ptl2')
-rw-r--r-- | devel/ptl2/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/devel/ptl2/Makefile b/devel/ptl2/Makefile index d7e6581b9a3..44dc52d1a14 100644 --- a/devel/ptl2/Makefile +++ b/devel/ptl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/03/29 23:13:56 tron Exp $ +# $NetBSD: Makefile,v 1.2 1999/03/29 23:31:08 tron Exp $ DISTNAME= PTL2-current-990325 PKGNAME= ptl2-current-990325 @@ -24,16 +24,14 @@ post-install: find PTL -type f >>${PLIST_SRC}; \ for LINK in `find PTL -type l`; do \ set - X `file $$LINK`; \ - @${ECHO} "@exec ln -s $$6 %D/$$LINK" >>${PLIST_SRC}; \ - @${ECHO} "@unexec rm -f %D/$$LINK" >>${PLIST_SRC}; \ + ${ECHO} "@exec ln -s $$6 %D/$$LINK" >>${PLIST_SRC}; \ + ${ECHO} "@unexec rm -f %D/$$LINK" >>${PLIST_SRC}; \ done; \ for DIR in `find PTL -type d | sort -r`; do \ if [ -z "`ls $$DIR`" ]; then \ - @${ECHO} "@exec mkdir -p %D/$$DIR" >>${PLIST_SRC}; \ + ${ECHO} "@exec mkdir -p %D/$$DIR" >>${PLIST_SRC}; \ fi; \ - @${ECHO} "@dirrm $$DIR" >>${PLIST_SRC}; \ + ${ECHO} "@dirrm $$DIR" >>${PLIST_SRC}; \ done -# @cd ${PREFIX}; \ -# find PTL -type d | sort -r | ${SED} -e 's#^P#@dirrm P#' >>${PLIST_SRC} .include "../../mk/bsd.pkg.mk" |