[SCM] pkg-boinc scripts branch, master, updated. 018296b408698b533b3d67af76154d173dfda3b9

Gianfranco Costamagna costamagnagianfranco at yahoo.it
Sat Dec 8 11:03:40 UTC 2012


The following commit has been merged in the master branch:
commit 018296b408698b533b3d67af76154d173dfda3b9
Author: Gianfranco Costamagna <costamagnagianfranco at yahoo.it>
Date:   Sat Dec 8 00:59:56 2012 +0100

    fix typo

diff --git a/export-boinc b/export-boinc
index ba7b357..1a15da1 100755
--- a/export-boinc
+++ b/export-boinc
@@ -86,7 +86,7 @@ done
 
 
 # Parse/validate the given command line options to construct the
-# appropriate Subversion command to download the upstream source ccode.
+# appropriate git command to download the upstream source code.
 #
 if [ -z "$VERSION" ]; then
     echo "W: version number was not specified, assuming 'HEAD'"
@@ -186,7 +186,10 @@ version.h export-ignore
 EOATTRIBUTES
 
 # source files should not be executable
-find . -name "*.cpp" | xargs -r chmod 644
+#the previous version had problem with spaces in the path
+#find . -name "*.cpp" -exec chmod 0644 {} \;
+#find . -name "*.h"   -exec chmod 0644 {} \;
+#find . -name "*.png" -exec chmod 0644 {} \;
 
 # If HEAD was specified as version number, read the actual version
 # number from configure.ac and rename the $ORIG_DIR
@@ -225,7 +228,7 @@ fi
 
 GIT_COMMAND="git archive --worktree-attributes  -v --format tgz -o $DEST_DIR/$ORIG_ARCHIVE -9 --prefix $ORIG_DIR/ $TAG"
 
-# Print the svn command invocation and export the BOINC source code
+# Print the git command invocation and export the BOINC source code
 # from upstream's Subversion repository.
 #
 echo "$GIT_COMMAND"

-- 
pkg-boinc scripts



More information about the pkg-boinc-commits mailing list