diff options
author | Alec Warner <antarus@gentoo.org> | 2006-05-23 17:51:57 +0000 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2006-05-23 17:51:57 +0000 |
commit | ad1dec32204bc3ed7e0e5977153b89d8f27bde55 (patch) | |
tree | 6134b0208d4b13546e8e3987da740e06a29fd0d9 | |
parent | 26ae06167601c70f043fa3bf859be9610dc1204e (diff) | |
download | portage-ad1dec32204bc3ed7e0e5977153b89d8f27bde55.tar.gz portage-ad1dec32204bc3ed7e0e5977153b89d8f27bde55.tar.bz2 portage-ad1dec32204bc3ed7e0e5977153b89d8f27bde55.zip |
Fix prepstrip to work with restrict, thanks to flameeyes and bug 134135
svn path=/main/trunk/; revision=3403
-rwxr-xr-x | bin/prepstrip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/prepstrip b/bin/prepstrip index bfee45524..fdf666a7d 100755 --- a/bin/prepstrip +++ b/bin/prepstrip @@ -6,7 +6,7 @@ source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh if hasq nostrip ${FEATURES} ${RESTRICT} || \ - hasq strip RESTRICT + hasq strip ${RESTRICT} then exit 0 fi |