posaune
authorMichael Wagner <michael@wagnertech.de>
Thu, 26 Nov 2020 10:47:15 +0000 (11:47 +0100)
committerMichael Wagner <michael@wagnertech.de>
Thu, 26 Nov 2020 10:47:15 +0000 (11:47 +0100)
debian/mbuild.changelog
tools/make/mconfigure

index 6244599..4ac574d 100644 (file)
@@ -2,6 +2,7 @@ projects (0.6-%BUILD%) unstable; urgency=medium
   * 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
index e128871..95e0006 100755 (executable)
@@ -13,8 +13,17 @@ function echo_usage {
 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