summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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