* calls PAKET.prepare (if present) in config step
* RSYNC_OPTS in rules.pre
* cpp build support
+ * correction of bug 58 (build in new sandbox)
-- Michael Wagner <michael@wagnertech.de> Thu, 11 Apr 2019 22:54:48 +0100
projects (0.5-%BUILD%) unstable; urgency=medium
function check_unversioned {
# has to be called in the projects base directory
# result: "M" in stdout or nothing
-
set -e
+
+ # check if build is running in a sandbox
+ if ! [ -f .cm.ignore ]
+ then
+ # we create one
+ echo ".cm.ignore" > .cm.ignore
+ echo "debian.*" >> .cm.ignore
+ echo "up.*" >> .cm.ignore
+ fi
+
project=$(pwd)
project=${project##*/}
pushd .. >/dev/null