diff options
author | Tom Tromey <tom@tromey.com> | 2017-11-30 11:49:27 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-12-01 07:56:11 -0700 |
commit | d0df06af9b70c5a6a2aa496437364f219e669067 (patch) | |
tree | 825265ee7d5511ceb954e66f8bcb18e74ae6bf62 /gdb/ChangeLog | |
parent | 2ee0c9b3eedca5d1071870334d2721be80a77ea1 (diff) | |
download | fsf-binutils-gdb-d0df06af9b70c5a6a2aa496437364f219e669067.zip fsf-binutils-gdb-d0df06af9b70c5a6a2aa496437364f219e669067.tar.gz fsf-binutils-gdb-d0df06af9b70c5a6a2aa496437364f219e669067.tar.bz2 |
Fix dependency tracking for objects in subdirectories
On irc, Pedro pointed out that dependencies for objects in
subdirectories didn't seem to be working.
The bug was that the "-include" for .deps files was using the wrong file
name for subdirectory objects; e.g., for cli/cli-decode.o it was trying
to open .deps/cli/cli-decode.o, whereas the correct file is
cli/.deps/cli-decode.o.
This patch changes how the dep files are found. Tested by touching a
source file and rebuilding cli/cli-decode.o.
2017-12-01 Tom Tromey <tom@tromey.com>
* Makefile.in (all_deps_files): New variable.
Include .Po files using all_deps_files.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6e6b4a6..a51b0f7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-12-01 Tom Tromey <tom@tromey.com> + + * Makefile.in (all_deps_files): New variable. + Include .Po files using all_deps_files. + 2017-12-01 Joel Brobecker <brobecker@adacore.com> * MAINTAINERS: Update list of maintainers, moving those who |