From: Michael Wagner Date: Thu, 26 Nov 2020 10:47:15 +0000 (+0100) Subject: posaune X-Git-Tag: verleihnix_0.1-2~2 X-Git-Url: http://wagnertech.de/git?p=projects.git;a=commitdiff_plain;h=5246653c90e3e0b87a4b8f44ade6300e2e51e057 posaune --- diff --git a/debian/mbuild.changelog b/debian/mbuild.changelog index 6244599..4ac574d 100644 --- a/debian/mbuild.changelog +++ b/debian/mbuild.changelog @@ -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 Thu, 11 Apr 2019 22:54:48 +0100 projects (0.5-%BUILD%) unstable; urgency=medium diff --git a/tools/make/mconfigure b/tools/make/mconfigure index e128871..95e0006 100755 --- a/tools/make/mconfigure +++ b/tools/make/mconfigure @@ -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