more updates
[synfig.git] / gtkmm-osx / trunk / package
index 1cc79e0..4681714 100755 (executable)
@@ -217,12 +217,12 @@ if ( $?resDir ) then
     pushd $resDir > /dev/null
        # get lists of resources. We'll want to change
        # permissions on just these things later.
-        set directoriesInResDir = `find . -type d`
-        set filesInResDir = `find . -type f`
+        set directoriesInResDir = `find . -type d | grep -v svn`
+        set filesInResDir = `find . -type f | grep -v svn`
     popd > /dev/null
 
     # copy the resource directory contents into the package directory
-    foreach resFile (`ls $resDir`)
+    foreach resFile (`ls $resDir | grep -v svn`)
        cp -r "$resDir/$resFile" "$pkg/Contents/Resources"
     end