summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-04-24 20:02:02 +0000
committerErik Troan <ewt@redhat.com>2000-04-24 20:02:02 +0000
commit5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd (patch)
tree1eebabee5520d08dd23ce8472b9f0fda326cd06e /scripts
parent6ec20dd175f3739eb0651ef0ff749c44c9e522c5 (diff)
downloadanaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.tar.gz
anaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.tar.xz
anaconda-5eaaaf5c55a2baa388ba5dccbc04b4186cac6fcd.zip
handle + in package names
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/upd-instroot2
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)