aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Ludd <solar@gentoo.org>2006-01-29 19:04:38 +0000
committerNed Ludd <solar@gentoo.org>2006-01-29 19:04:38 +0000
commit049cdf4a4b25f48445830920df8d33a9e98c4f2b (patch)
tree6d3ef60e7504673f94ba894f8f3d034bb53beb79
parent- Only force the exporting of the env var for qmerge when ((install || uninst... (diff)
downloadportage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.tar.gz
portage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.tar.bz2
portage-utils-049cdf4a4b25f48445830920df8d33a9e98c4f2b.zip
- update tarball making methodv0.1.13
-rwxr-xr-xmake-tarball.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/make-tarball.sh b/make-tarball.sh
index 0a3185a9..6487c4e7 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 '{}' \;