Eric Blake wrote:
> Does this solve it?
> Index: m4/stdint.m4
> ...
> -    ABSOLUTE_STDINT_H="<$gl_cv_absolute_stdint_h>"
> -    AC_SUBST([ABSOLUTE_STDINT_H])

It is definitely related code.  But unfortunately no it does not fix
it.  Actually things take a turn for the worse.

With that change the substitution is not included in config.status at
all.  This affects the Makefile negatively.

Now:
  grep ABSOLUTE_STDINT_H lib/Makefile
            -e 's|@''ABSOLUTE_STDINT_H''@|$(ABSOLUTE_STDINT_H)|g' \
Before:
  grep ABSOLUTE_STDINT_H lib/Makefile
  ABSOLUTE_STDINT_H = <///usr/include/stdint.h>
            -e 's|@''ABSOLUTE_STDINT_H''@|$(ABSOLUTE_STDINT_H)|g' \

Hmm...  That missing assignment is going to be a problem.  And the
result after substitution in the stdint.h file is:

  # include 

Which fails for obvious reasons.  Oh well.

Thanks just the same for the effort.

Bob


Reply via email to