summaryrefslogtreecommitdiff
path: root/configure
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
commit7f25e260d15e8da87806c172d9bd4cee44cb83b8 (patch)
tree93d62ec15efafdcc284152a52fc810133787d532 /configure
parentfa09acdbbab4f4c0274335ff88a642fd02c1710a (diff)
downloadapimagic-7f25e260d15e8da87806c172d9bd4cee44cb83b8.tar.bz2
apimagic-7f25e260d15e8da87806c172d9bd4cee44cb83b8.tar.xz
build system: configure: do not create cfgdefs.mk and userdefs.mk with --help.
Diffstat (limited to 'configure')
-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