diff options
author | Andrew Pinski <apinski@marvell.com> | 2021-11-28 01:14:59 +0000 |
---|---|---|
committer | Andrew Pinski <apinski@marvell.com> | 2021-11-28 22:40:36 +0000 |
commit | 32377c101934477e3d27fec9c6a22f1c97ccf730 (patch) | |
tree | a74fcd3bad0811b0690bcd2c3a7dfd1955e5088c /libsanitizer/interception/Makefile.in | |
parent | 2899d49e3701a4df18a336a680a7095cc99a2229 (diff) | |
download | gcc-32377c101934477e3d27fec9c6a22f1c97ccf730.zip gcc-32377c101934477e3d27fec9c6a22f1c97ccf730.tar.gz gcc-32377c101934477e3d27fec9c6a22f1c97ccf730.tar.bz2 |
Fix PR 62157: disclean in libsanitizer not working
So what is happening is DIST_SUBDIRS contains the conditional
directories which is wrong, so we need to force DIST_SUBDIRS
to be the same as SUBDIRS as recommened by the automake manual.
OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions.
Also now make distclean works inside libsanitizer directory.
libsanitizer/ChangeLog:
PR sanitizer/62157
* Makefile.am: Force DIST_SUBDIRS to be SUBDIRS.
* Makefile.in: Regenerate.
* asan/Makefile.in: Likewise.
* hwasan/Makefile.in: Likewise.
* interception/Makefile.in: Likewise.
* libbacktrace/Makefile.in: Likewise.
* lsan/Makefile.in: Likewise.
* sanitizer_common/Makefile.in: Likewise.
* tsan/Makefile.in: Likewise.
* ubsan/Makefile.in: Likewise.
Diffstat (limited to 'libsanitizer/interception/Makefile.in')
-rw-r--r-- | libsanitizer/interception/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsanitizer/interception/Makefile.in b/libsanitizer/interception/Makefile.in index 326ee9a..c14d527 100644 --- a/libsanitizer/interception/Makefile.in +++ b/libsanitizer/interception/Makefile.in @@ -315,6 +315,7 @@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ |