[gnome-initial-setup] build: Initialize automake earlier



commit e01939b94d7f1a5a630eb80c7ef977619d2c44d7
Author: Kalev Lember <kalevlember gmail com>
Date:   Fri Mar 7 13:17:23 2014 +0100

    build: Initialize automake earlier
    
    This reorders the macros so that AC_USE_SYSTEM_EXTENSIONS comes after
    initializing automake. Without this, $install_sh doesn't get expanded
    properly, causing errors like:
    
    /bin/sh: /home/kalev/install-sh: No such file or directory
    install: cannot create regular file 
‘/media/build/gnome/_jhbuild/root-gnome-initial-setup/media/build/gnome/share/locale/af/LC_MESSAGES/gnome-initial-setup.mo’:
 No such file or directory
    
    Related: https://bugs.freedesktop.org/show_bug.cgi?id=66413

 configure.ac |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index f888739..4b521f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,11 +1,13 @@
 AC_INIT([gnome-initial-setup],[3.11.91])
 AC_CONFIG_MACRO_DIR([m4])
-AC_USE_SYSTEM_EXTENSIONS
 AM_INIT_AUTOMAKE([dist-xz no-dist-gzip foreign])
 AM_SILENT_RULES([yes])
-LT_INIT
+
+AC_USE_SYSTEM_EXTENSIONS
 AC_PROG_CC
 
+LT_INIT
+
 IT_PROG_INTLTOOL([0.40])
 
 GETTEXT_PACKAGE=gnome-initial-setup


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]