diff options
author | Mike Fulbright <msf@redhat.com> | 2003-01-14 00:54:07 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-01-14 00:54:07 +0000 |
commit | 8534a8e48ed2e39f75248e9faa8c93b669c913e4 (patch) | |
tree | f3e72819901e4b4729d2b380d1e44b57186c57d2 /scripts | |
parent | 81e810fff520b0177cd62a709cd9f7886a587380 (diff) | |
download | anaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.tar.gz anaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.tar.xz anaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.zip |
might fix syntax errors during builddistro
Diffstat (limited to 'scripts')
-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 542993346..e854b01e6 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -1025,7 +1025,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 |