diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-20 03:31:26 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-20 03:31:26 +0000 |
commit | 31f1add4879da48efb7af21fc5c575692cc3709d (patch) | |
tree | 7a541b8f54f91ed8309da17752e205b40db2cf30 /scripts/upd-instroot | |
parent | 8307d33391423f13c1deed409b80d8e381582a93 (diff) | |
download | anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.tar.gz anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.tar.xz anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.zip |
merge from taroon
fairly large merge, but all fairly obvious stuff. will test in a tree tomorrow
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 96d78d053..d5f235fae 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -649,6 +649,8 @@ usr/share/zoneinfo/US usr/share/zoneinfo/Europe usr/share/zoneinfo/Japan usr/share/zoneinfo/America +usr/share/zoneinfo/Asia +usr/share/zoneinfo/Atlantic " # sparc needs 100dpi fonts as well, otherwise @@ -981,8 +983,8 @@ for p in $DEST $DESTGR; do (cd $p/lib; rm -f libnss_files.so.1 libnss_dns.so.1) fi - if [ -d $TZDIR/usr/share/zoneinfo ]; then - (cd $TZDIR/usr/share/zoneinfo; find . -type f -or -type l | + if [ -d $DEST/usr/share/zoneinfo ]; then + (cd $DEST/usr/share/zoneinfo; find . -type f -or -type l | grep '^./[A-Z]' | sort | sed 's/^..//' | gzip -9) > $p/usr/lib/timezones.gz else @@ -1014,6 +1016,11 @@ if [ -n "$NEEDGR" ]; then rm -f $DESTGR/usr/bin/fc-cache fi +echo "Creating debug dir" +for p in $DEST $DESTGR ; do + mkdir -p $p/usr/lib/debug +done + if [ $ARCH = "alpha" ]; then rm -rf $DEST/usr/share/locale |