diff options
author | rafan <rafan@75cda91c-bdda-477a-9548-7b8f56199edc> | 2009-01-20 16:43:00 +0800 |
---|---|---|
committer | rafan <rafan@75cda91c-bdda-477a-9548-7b8f56199edc> | 2009-01-20 16:43:00 +0800 |
commit | 37a62813fc2aefa0bd33d0f7989d85839b1cf156 (patch) | |
tree | 5b28acd3cc12a2e348c41d267268745d024e9a08 | |
parent | 3d6ed8b4f17d8d25b3eea6aba1707aad18c867e8 (diff) | |
download | wslabports-37a62813fc2aefa0bd33d0f7989d85839b1cf156.tar.gz wslabports-37a62813fc2aefa0bd33d0f7989d85839b1cf156.tar.zst wslabports-37a62813fc2aefa0bd33d0f7989d85839b1cf156.zip |
- Filter out duplicated dependencies
git-svn-id: https://opensvn.csie.org/wslabports/trunk@42 75cda91c-bdda-477a-9548-7b8f56199edc
-rw-r--r-- | 217/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/217/Makefile b/217/Makefile index e47226b..c85e14e 100644 --- a/217/Makefile +++ b/217/Makefile @@ -339,8 +339,8 @@ do-install: @${DO_NADA} check: - @${PKG_INFO} -qoa | ${SORT} > ${PKG_CURRENT} - @${MAKE} all-depends-list | ${SED} 's,${PORTSDIR}/,,' | ${SORT} > ${PKG_LISTED} + @${PKG_INFO} -qoa | ${SORT} | uniq > ${PKG_CURRENT} + @${MAKE} all-depends-list | ${SED} 's,${PORTSDIR}/,,' | ${SORT} | uniq > ${PKG_LISTED} @${ECHO_CMD} "Ports are installed but not listed" @comm -23 ${PKG_CURRENT} ${PKG_LISTED} @${ECHO_CMD} "" |