shithub: choc

Download patch

ref: 37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1
parent: c401e515b0bbe734fc39517a4d25c96ce487bef4
author: Simon Howard <fraggle@gmail.com>
date: Mon Jan 4 17:53:44 EST 2010

Fix single space error when listing libraries.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1789

--- a/pkg/osx/cp-with-libs
+++ b/pkg/osx/cp-with-libs
@@ -10,7 +10,7 @@
 
 # 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