summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/prepall
diff options
context:
space:
mode:
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