diff options
author | Alan Hayward <alan.hayward@arm.com> | 2018-02-19 09:37:24 +0000 |
---|---|---|
committer | Alan Hayward <alan.hayward@arm.com> | 2018-02-19 09:37:24 +0000 |
commit | b5884fa7101cc528f07fd57c3de445a3680964a6 (patch) | |
tree | 673fef9a19032412d596a21406bb7cb783a3e65c /gdb/common | |
parent | dbc88fc14992c556b94e77de563a8f7abcb0b653 (diff) | |
download | gdb-b5884fa7101cc528f07fd57c3de445a3680964a6.zip gdb-b5884fa7101cc528f07fd57c3de445a3680964a6.tar.gz gdb-b5884fa7101cc528f07fd57c3de445a3680964a6.tar.bz2 |
Add common/ dir in build directories
gdb/
* Makefile.in: (COMMON_SFILES): Add common/*.c files.
(SFILES): Remove common/*.c files.
(COMMON_OBS): Remove some *.o files built from common/*.c files.
* common/common.host: Add common reference.
* configure.ac: Likewise.
* configure: Regenerate.
gdbserver/
* Makefile.in: Add common directory in build.
* configure.ac: Add common reference.
* configure: Regenerate.
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/common.host | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/common/common.host b/gdb/common/common.host index b7051d6..87f144c 100644 --- a/gdb/common/common.host +++ b/gdb/common/common.host @@ -27,10 +27,10 @@ case "${host}" in -*-mingw*) common_host_obs=mingw-strerror.o +*-mingw*) common_host_obs=common/mingw-strerror.o ;; *) - common_host_obs=posix-strerror.o + common_host_obs=common/posix-strerror.o ;; esac |