When running the configure script with an absolute path, run_tests.sh fail.
See output.txt and test-suite.log for details.
$ tar -xf /tmp/packages/re2c-0.16.tar.gz -C /tmp/sources/re2c-0.16 --strip-components 1
$ cd /tmp/build/re2c-0.16
$ /tmp/sources/re2c-0.16/configure --prefix=/tmp/install --enable-docs
$ make -j8 bootstrap docs
$ make -j8 check
The same using a relative path leads to run_tests.sh success.
$ tar -xf /tmp/packages/re2c-0.16.tar.gz -C /tmp/sources/re2c-0.16 --strip-components 1
$ cd /tmp/build/re2c-0.16
$ ../../sources/re2c-0.16/configure --prefix=/tmp/install --enable-docs
$ make -j8 bootstrap docs
$ make -j8 check