summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Bouvier <skunnyk@alteroot.org>2021-01-30 23:49:17 +0100
committerRomain Bouvier <skunnyk@alteroot.org>2021-03-05 16:48:11 +0000
commit328f47cd130b61e2a6f7198e2a17af236649d6a4 (patch)
treea0cfb7cca96174199127077d8c8f194e760506db
parentb569f211c16a49cba72f9a9d471c4ca02708f061 (diff)
downloadxfce4-dev-tools-328f47cd130b61e2a6f7198e2a17af236649d6a4.tar.gz
Create the m4/ if it does not exists
- So we are sure to not print any warning because of a missing m4/ folder on first aclocal run
-rw-r--r--scripts/xdt-autogen.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/xdt-autogen.in b/scripts/xdt-autogen.in
index bddbed4..abbf5c8 100644
--- a/scripts/xdt-autogen.in
+++ b/scripts/xdt-autogen.in
@@ -412,6 +412,9 @@ CONFIGURE_FLAGS="${XDT_CONFIGURE_FLAGS} $*"
##
## Do the real work(TM)
##
+# We need to create m4 directory in case it does not exists yet, to avoid any aclocal warnings
+mkdir -p m4
+
IFS=$special_IFS
for configure_ac_file in ${CONFIGURE_AC_FILES}; do
IFS=$default_IFS