foxygit / doom Log in
commit 37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Mon Jan 4 22:53:44 2010 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Mon Jan 4 22:53:44 2010 +0000

    Fix single space error when listing libraries.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 1789
---
 pkg/osx/cp-with-libs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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