diff options
author | Erik Troan <ewt@redhat.com> | 2000-04-24 20:02:02 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-04-24 20:02:02 +0000 |
commit | 5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd (patch) | |
tree | 1eebabee5520d08dd23ce8472b9f0fda326cd06e /scripts | |
parent | 6ec20dd175f3739eb0651ef0ff749c44c9e522c5 (diff) | |
download | anaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.tar.gz anaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.tar.xz anaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.zip |
handle + in package names
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/upd-instroot | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 54c0b3a27..ea2078b86 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -60,6 +60,8 @@ prunePackageList() { PATTERN="${PATTERN:+${PATTERN}|}(^$PKG )" PACKAGEFILES="$PACKAGEFILES $(ls $PACKAGEPATH/${PKG}*)" done + # gtk+, enough said + PATTERN=$(echo $PATTERN | sed 's,[\+\*],\\&,g') PACKAGEFILES=$(ls $PACKAGEFILES | sort -u) |