>From 97bd548c13e1e9ee78a60ff79e328e483b801e5c Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 16 Jan 2015 10:30:09 +0100 Subject: [PATCH] BUILD: Fix building with automake 1.15 The macro AC_BUILD_AUX_DIR was used too late and therefore was not looking into directory build/ for install-sh. As a result of this configure faileda configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../..". --- proxy/configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/proxy/configure.ac b/proxy/configure.ac index a709d200cdc20e37b17503e293ce7fed279299eb..8e8f36b823646faae0c5c7350a95171280e8f27b 100644 --- a/proxy/configure.ac +++ b/proxy/configure.ac @@ -4,6 +4,8 @@ m4_include([version.m4]) AC_INIT([gssproxy], VERSION_NUMBER, [simo@redhat.com]) +AC_CONFIG_SRCDIR([BUILD.txt]) +AC_CONFIG_AUX_DIR([build]) m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC_USE_SYSTEM_EXTENSIONS], @@ -11,9 +13,6 @@ m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE" -AC_CONFIG_SRCDIR([BUILD.txt]) -AC_CONFIG_AUX_DIR([build]) - AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax]) AM_PROG_CC_C_O AM_PROG_AR -- 2.1.0