diff options
author | Mike Hommey <mh@glandium.org> | 2021-11-30 21:49:48 +0000 |
---|---|---|
committer | Mike Hommey <mh@glandium.org> | 2021-11-30 21:49:48 +0000 |
commit | 63866f8d5ea05b853792e99044756b3928e9d490 (patch) | |
tree | 6e451e274fe09d806977abb271e947f72e1c8600 | |
parent | 3e98ab4caf3785adb9232bb9ef65a5f5bc40eeb5 (diff) | |
download | nspr-hg-63866f8d5ea05b853792e99044756b3928e9d490.tar.gz |
Bug 1742269 - Remove ${srcdir} from AC_CONFIG_AUX_DIR. r=kaie
Per autoconf documentation:
dir can be either absolute or relative to srcdir.
${srcdir} is thus unnecessary (and is not supported by autoreconf)
Differential Revision: https://phabricator.services.mozilla.com/D131728
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 081113c2..054fe2a0 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ AC_PREREQ(2.61) AC_INIT AC_CONFIG_SRCDIR([pr/include/nspr.h]) -AC_CONFIG_AUX_DIR(${srcdir}/build/autoconf) +AC_CONFIG_AUX_DIR(build/autoconf) AC_CANONICAL_TARGET dnl ======================================================== |