This happens when configure is called with an absolute path. In configure.ac, we define it by appending the calling path to the current path, which is wrong if both are absolute paths:
AC_DEFINE_UNQUOTED([ABS_SRCDIR], ["pwd -W/$srcdir"], [Absolute path to source directory.])
This happens when
configure
is called with an absolute path. Inconfigure.ac
, we define it by appending the calling path to the current path, which is wrong if both are absolute paths:AC_DEFINE_UNQUOTED([ABS_SRCDIR], ["
pwd -W/$srcdir"], [Absolute path to source directory.])