summaryrefslogtreecommitdiff
path: root/pkg/osx
diff options
context:
space:
mode:
authorSimon Howard2010-01-04 22:53:44 +0000
committerSimon Howard2010-01-04 22:53:44 +0000
commit37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1 (patch)
tree157796dc5b3431f8ca581da731bfd480729cefc6 /pkg/osx
parentc401e515b0bbe734fc39517a4d25c96ce487bef4 (diff)
downloadchocolate-doom-37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1.tar.gz
chocolate-doom-37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1.tar.bz2
chocolate-doom-37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1.zip
Fix single space error when listing libraries.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1789
Diffstat (limited to 'pkg/osx')
-rwxr-xr-xpkg/osx/cp-with-libs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs
index 902ae079..bb4fa001 100755
--- a/pkg/osx/cp-with-libs
+++ b/pkg/osx/cp-with-libs
@@ -10,7 +10,7 @@ cp "$BINARY" "$DEST"
# Copy libraries; only those with libSDL in the name
-otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/(.*//' | while read; do
+otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/ (.*//' | while read; do
cp "$REPLY" "$DEST"
done