. source release.functions with explicit path
. make xargs touch not fail (due to too long invocations
and spaces in paths)
Change-Id: I448b96cebd641bf2c7b86ecbb3d1f1cb568e4f70
set -e
-. release.functions
+. ./release.functions
version_pretty="`sh ../sys/conf/osrelease.sh`"
version="`echo $version_pretty | tr . _`"
fi
echo " * Resetting timestamps"
-find $RELEASEDIR | xargs touch
+find $RELEASEDIR -print0 | xargs -n1000 -0 touch
##########################################################################
echo " * Build"