summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/prepall
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-07-08 10:14:51 -0700
committerZac Medico <zmedico@gentoo.org>2011-07-08 10:14:51 -0700
commit08c279024c1e2f8924f7d68e278d0423415695ec (patch)
tree725c118a76b5ee50665e373cdb6913bd562d19ae /bin/ebuild-helpers/prepall
parentd334784c83f65b75c5b0f12f1b6294e522107ae6 (diff)
downloadportage-08c279024c1e2f8924f7d68e278d0423415695ec.tar.gz
portage-08c279024c1e2f8924f7d68e278d0423415695ec.tar.bz2
portage-08c279024c1e2f8924f7d68e278d0423415695ec.zip
Remove all hasq/useq calls for bug #199722.
Diffstat (limited to 'bin/ebuild-helpers/prepall')
-rwxr-xr-xbin/ebuild-helpers/prepall4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild-helpers/prepall b/bin/ebuild-helpers/prepall
index 19db41552..dbed57c4e 100755
--- a/bin/ebuild-helpers/prepall
+++ b/bin/ebuild-helpers/prepall
@@ -4,7 +4,7 @@
source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
-if hasq chflags $FEATURES ; then
+if has chflags $FEATURES ; then
# Save all the file flags for restoration at the end of prepall.
mtree -c -p "${D}" -k flags > "${T}/bsdflags.mtree"
# Remove all the file flags so that prepall can do anything necessary.
@@ -17,7 +17,7 @@ prepallinfo
prepallstrip
-if hasq chflags $FEATURES ; then
+if has chflags $FEATURES ; then
# Restore all the file flags that were saved at the beginning of prepall.
mtree -U -e -p "${D}" -k flags < "${T}/bsdflags.mtree" &> /dev/null
fi