]> Savannah Git Hosting - gnulib.git/commitdiff
non-recursive-gnulib-prefix-hack: revert use of parameterized 'lib' dir
authorPádraig Brady <P@draigBrady.com>
Mon, 7 Nov 2016 12:50:24 +0000 (12:50 +0000)
committerPádraig Brady <P@draigBrady.com>
Mon, 7 Nov 2016 13:15:26 +0000 (13:15 +0000)
This reverts commit df6f91c as the evaluation of the passed shell
variable happens at the wrong time in the references generated by
m4/non-recursive-gnulib-prefix-hack.m4
Revert to the hardcoded "lib/".

ChangeLog
modules/non-recursive-gnulib-prefix-hack

index ef74cb4a976c564396dc6354da3280770897ac2b..f2b44269c6c5c1d05b0c49e53977db4373da4321 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * lib/git-merge-changelog.c (compute_differences):
        Adjust to diffseq.h changes.
 
-2016-10-22  Bruno Haible  <bruno@clisp.org>
-
-       non-recursive-gnulib-prefix-hack: Don't make assumptions about
-       gnulib-tool's --source-base option value.
-       * modules/non-recursive-gnulib-prefix-hack (configure.ac): Use
-       gl_source_base.
-
 2016-10-22  Bruno Haible  <bruno@clisp.org>
 
        iconv: Avoid compilation error when bootstrapping GNU libiconv.
index f938d30a290dd5ece5fb1864b3559466c7bc5074..a4b13736cb67ecdf415f1f9b2ed09045587a309e 100644 (file)
@@ -12,7 +12,10 @@ configure.ac:
 dnl Run our hack near the end, just before config.status creation.
 dnl It must happen late, i.e., after gl_LIBOBJS has been finalized.
 AC_CONFIG_COMMANDS_PRE([
-  gl_NON_RECURSIVE_GNULIB_PREFIX_HACK([$gl_source_base])
+  dnl Note we can't currently pass $gl_source_base instead of 'lib',
+  dnl because $gl_source_base is unset or the wrong value in the references
+  dnl generated in m4/non-recursive-gnulib-prefix-hack.m4
+  gl_NON_RECURSIVE_GNULIB_PREFIX_HACK([lib])
   ])
 
 Makefile.am: