diff options
author | Mike Fulbright <msf@redhat.com> | 2003-01-15 00:40:41 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-01-15 00:40:41 +0000 |
commit | 1ef76de5edf2a44c12b91e2836f2f6d1ccfee7c1 (patch) | |
tree | 639c89b3c9a34046eaf5a86b50a319a94508a737 /scripts/upd-instroot | |
parent | d1f7d2f7ad1cbe88967bcfdc60c641c56241747a (diff) | |
download | anaconda-1ef76de5edf2a44c12b91e2836f2f6d1ccfee7c1.tar.gz anaconda-1ef76de5edf2a44c12b91e2836f2f6d1ccfee7c1.tar.xz anaconda-1ef76de5edf2a44c12b91e2836f2f6d1ccfee7c1.zip |
ok this will fix it
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 508df3758..80c4f0ae5 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -1027,7 +1027,7 @@ done # do some stripping of debugging symbols if [ -x /usr/bin/runroot -a -n "$COMPONENT" ]; then REALPATH=`(cd $DEST; /bin/pwd | sed 's,/md1/,/,g')` - runroot $COMPONENT --onlyone --arch $ARCH "cd $REALPATH\; find $DESTGR -type f -name '*.so' -exec strip -g '{}' ';'" + runroot $COMPONENT --onlyone --arch $ARCH "cd $REALPATH; find $DESTGR -type f -name '*.so' -exec strip -g '{}' ';'" else find $DESTGR -type f -name '*.so' |xargs strip -g fi |