[Asterisk-code-review] autoconf: Fix call to AC CONFIG AUX DIR. (asterisk[13])
Corey Farrell
asteriskteam at digium.com
Mon Nov 27 13:51:42 CST 2017
Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/7381
Change subject: autoconf: Fix call to AC_CONFIG_AUX_DIR.
......................................................................
autoconf: Fix call to AC_CONFIG_AUX_DIR.
The `pwd` parameter to AC_CONFIG_AUX_DIR is unnecessary, the default
value is $srcdir.
Additionally remove the AC_REVISION call. It only added a comment and
is pointless without SVN tag replacements.
Change-Id: I99299a3217f095bddcb2edefb3b9af0ab147bc29
---
M configure
M configure.ac
2 files changed, 3 insertions(+), 6 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/81/7381/1
diff --git a/configure b/configure
index a07d878..71d392b 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,4 @@
#! /bin/sh
-# From configure.ac Revision.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for asterisk trunk.
#
@@ -3670,7 +3669,7 @@
ac_aux_dir=
-for ac_dir in `pwd` "$srcdir"/`pwd`; do
+for ac_dir in "$srcdir"/; do
if test -f "$ac_dir/install-sh"; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/install-sh -c"
@@ -3686,7 +3685,7 @@
fi
done
if test -z "$ac_aux_dir"; then
- as_fn_error $? "cannot find install-sh, install.sh, or shtool in \`pwd\` \"$srcdir\"/\`pwd\`" "$LINENO" 5
+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\"/" "$LINENO" 5
fi
# These three variables are undocumented and unsupported,
@@ -3696,7 +3695,6 @@
ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
-
diff --git a/configure.ac b/configure.ac
index 7af35df..c617cf0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,10 +17,9 @@
# check existence of the package
AC_CONFIG_SRCDIR([main/asterisk.c])
-AC_CONFIG_AUX_DIR(`pwd`)
+AC_CONFIG_AUX_DIR()
AC_COPYRIGHT("Asterisk")
-AC_REVISION($Revision$)
# preserve any CFLAGS or LDFLAGS that may be set
# NOTE: This must be done before calling any macros that end up
--
To view, visit https://gerrit.asterisk.org/7381
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: I99299a3217f095bddcb2edefb3b9af0ab147bc29
Gerrit-Change-Number: 7381
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171127/4e3c47a9/attachment-0001.html>
More information about the asterisk-code-review
mailing list