diff options
author | John Marino <marino@FreeBSD.org> | 2014-10-16 11:53:42 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-10-16 11:53:42 +0000 |
commit | fa93bad1215e901cfebdeeb3dcf02440416def7a (patch) | |
tree | e8621b27d6d0fe43816541a11be8f968bb405a75 /lang/asis | |
parent | 242e23680e5ed01e00b6fdff4ecf489b51be881a (diff) | |
download | ports-fa93bad1215e901cfebdeeb3dcf02440416def7a.tar.gz ports-fa93bad1215e901cfebdeeb3dcf02440416def7a.zip |
Remove @dirrm from 10 of my lang ports
The majority of these ports had generated plists, not static ones.
Notes
Notes:
svn path=/head/; revision=371003
Diffstat (limited to 'lang/asis')
-rw-r--r-- | lang/asis/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lang/asis/Makefile b/lang/asis/Makefile index 833c40476900..b75055067406 100644 --- a/lang/asis/Makefile +++ b/lang/asis/Makefile @@ -33,16 +33,10 @@ post-extract: do-build: # This target is recreated because -j cannot be set, but # MAKE_JOBS_SAFE=yes is needed for PROCESSORS value - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gmake ${MAKE_ARGS} all + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} all) post-install: - @cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ - ${SORT} >> ${TMPPLIST} - @cd ${STAGEDIR}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | \ - ${SORT} -r | ${SED} -e '/lib\/gnat$$/d' -e '/share\/doc$$/d' \ - -e '/share\/gps$$/d' -e '/share\/gps\/plug-ins$$/d' \ - -e 's/^/@dirrm /g' >> ${TMPPLIST} - @echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${TMPPLIST} - @echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${TMPPLIST} + @(cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ + ${SORT} >> ${TMPPLIST}) .include <bsd.port.mk> |