]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - binutils/ChangeLog
config/debuginfod: do not include pkg.m4 directly
authorMike Frysinger <vapier@gentoo.org>
Sun, 7 Feb 2021 00:24:29 +0000 (19:24 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sat, 13 Feb 2021 05:15:11 +0000 (00:15 -0500)
commitadeab0c5b33fd5f4959fa9a079a5b558f0088ba3
treef0e1e771e70ec144700d8ff292154234e2b4bb5a
parentceda7cf7f715ff62bfd9caeaa3f1b1ef9fdd4ecf
config/debuginfod: do not include pkg.m4 directly

Any code using AC_DEBUGINFOD from this dir is using -I../config when
running aclocal, so an explicit include on pkg.m4 is unnecessary:
aclocal will find the pkg.m4 in this dir just as easily.  This is
seen in the only two dirs that use AC_DEBUGINFOD (binutils & gdb)
as their aclocal.m4 already has m4_include on config m4 files.

The include as written only works if aclocal is run on a dir that is
at the same level of config/.  Any other depth will fail.
./
|-- config/
|-- binutils/    # works
|-- gdb/         # works
`-- sim/         # works
    `-- <port>/  # fails

It fails even if AC_DEBUGINFOD itself isn't used:
sim/bfin/ $ aclocal -I../../config
aclocal-1.15: error: ../../config/debuginfod.m4:8: file '../config/pkg.m4' does not exist
binutils/ChangeLog
binutils/aclocal.m4
config/ChangeLog
config/debuginfod.m4
gdb/ChangeLog
gdb/aclocal.m4