summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-10-23 23:31:09 +0000
committermidipix <writeonce@midipix.org>2019-10-23 23:32:54 +0000
commit73dceef9497ebe83655ea231b860641d2f0a3def (patch)
tree50225576d7b4cff118edb1daf340e6c3c9b9b9ff
parent463f3d6d1e50620ffd3982e912bf1ce3c469eb4b (diff)
downloadmdso-73dceef9497ebe83655ea231b860641d2f0a3def.tar.bz2
mdso-73dceef9497ebe83655ea231b860641d2f0a3def.tar.xz
build system: configure: do not create cfgdefs.mk and userdefs.mk with --help.
-rwxr-xr-xconfigure36
1 files changed, 18 insertions, 18 deletions
diff --git a/configure b/configure
index f01191b..3944c1b 100755
--- a/configure
+++ b/configure
@@ -99,24 +99,6 @@ init_vars()
. "$mb_config"
fi
- # project-specific config definitions
- if [ _$mb_use_custom_cfgdefs = _yes ]; then
- cat $sfrt_cfgdefs_in > cfgdefs.mk
- else
- printf '%s %s\n\n' \
- '# this project does not include' \
- 'a custom config step.' \
- > cfgdefs.mk
- cat $sfrt_cfgdefs_in >> cfgdefs.mk
-
- if [ -f $mb_project_dir/project/cfgdefs.in ]; then
- cat $mb_project_dir/project/cfgdefs.in >> cfgdefs.mk
- fi
- fi
-
- # user build-time overrides
- touch usrdefs.mk
-
# project
mb_nickname=$NICKNAME
mb_source_dir=$SOURCE_DIR
@@ -238,6 +220,24 @@ verify_source_directory()
common_defaults()
{
+ # project-specific config definitions
+ if [ _$mb_use_custom_cfgdefs = _yes ]; then
+ cat $sfrt_cfgdefs_in > cfgdefs.mk
+ else
+ printf '%s %s\n\n' \
+ '# this project does not include' \
+ 'a custom config step.' \
+ > cfgdefs.mk
+ cat $sfrt_cfgdefs_in >> cfgdefs.mk
+
+ if [ -f $mb_project_dir/project/cfgdefs.in ]; then
+ cat $mb_project_dir/project/cfgdefs.in >> cfgdefs.mk
+ fi
+ fi
+
+ # user build-time overrides
+ touch usrdefs.mk
+
# git
if [ -n "$mb_source_dir" ]; then
if [ -d "$mb_source_dir/.git" ]; then