diff options
author | 2006-01-29 19:04:38 +0000 | |
---|---|---|
committer | 2006-01-29 19:04:38 +0000 | |
commit | 049cdf4a4b25f48445830920df8d33a9e98c4f2b (patch) | |
tree | 6d3ef60e7504673f94ba894f8f3d034bb53beb79 /make-tarball.sh | |
parent | - Only force the exporting of the env var for qmerge when ((install || uninst... (diff) | |
download | portage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.tar.gz portage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.tar.bz2 portage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.zip |
- update tarball making methodv0.1.13
Diffstat (limited to 'make-tarball.sh')
-rwxr-xr-x | make-tarball.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make-tarball.sh b/make-tarball.sh index 0a3185a..6487c4e 100755 --- a/make-tarball.sh +++ b/make-tarball.sh @@ -17,7 +17,8 @@ bn="$(basename $(pwd))-${ver}" [[ -d "${bn}" ]] && rm -r "${bn}" mkdir "${bn}" || exit 1 cp -r Makefile README *.[ch] man libq tests "${bn}/" || exit 1 -for applet in $(grep ^APPLETS Makefile | cut -d = -f 2); do +APPLETS=$(awk -F'"' '{print $2}' include_applets.h | cut -d . -f 1) +for applet in ${APPLETS} ; do [[ $applet != q ]] && echo $applet done | sort > "${bn}"/applet-list find "${bn}" -type d -name CVS -exec rm -rf '{}' \; |