summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-01-14 00:54:07 +0000
committerMike Fulbright <msf@redhat.com>2003-01-14 00:54:07 +0000
commit8534a8e48ed2e39f75248e9faa8c93b669c913e4 (patch)
treef3e72819901e4b4729d2b380d1e44b57186c57d2 /scripts
parent81e810fff520b0177cd62a709cd9f7886a587380 (diff)
downloadanaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.tar.gz
anaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.tar.xz
anaconda-8534a8e48ed2e39f75248e9faa8c93b669c913e4.zip
might fix syntax errors during builddistro
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/upd-instroot2
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