diff options
author | marino <marino@FreeBSD.org> | 2014-02-17 08:09:54 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-02-17 08:09:54 +0800 |
commit | 01016e2fa6a11b8166db3ba5b712267ea927c1fa (patch) | |
tree | 3de2b6bfe6c4353c2d5a842c76366031db8d8243 | |
parent | b3036ffc533214e436be3a8b552489109a9cae44 (diff) | |
download | freebsd-ports-gnome-01016e2fa6a11b8166db3ba5b712267ea927c1fa.tar.gz freebsd-ports-gnome-01016e2fa6a11b8166db3ba5b712267ea927c1fa.tar.zst freebsd-ports-gnome-01016e2fa6a11b8166db3ba5b712267ea927c1fa.zip |
lang/gnat_util: Fix licenses in PLIST
The post-install target was overwriting the licenses
which were already present in $TMPPLIST
reported-by: antoine
-rw-r--r-- | lang/gnat_util/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/gnat_util/Makefile b/lang/gnat_util/Makefile index 16b577169d7b..3580b6872780 100644 --- a/lang/gnat_util/Makefile +++ b/lang/gnat_util/Makefile @@ -37,7 +37,7 @@ post-extract: post-install: @cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ - ${SORT} > ${TMPPLIST} + ${SORT} >> ${TMPPLIST} @cd ${STAGEDIR}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | \ ${SORT} -r | ${SED} -e '/lib\/gnat$$/d' -e 's/^/@dirrm /g' \ >> ${TMPPLIST} |