diff options
author | vapier <vapier@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-06 18:15:31 +0000 |
---|---|---|
committer | vapier <vapier@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-06 18:15:31 +0000 |
commit | 382b88088fecc4dd58ee8ae581944a3c1ca446ba (patch) | |
tree | 63953b41a642708fdf17d72fac3bd963d766da61 | |
parent | 5ce4a75a47bb4d9bb4bda84be11c28ad171eae20 (diff) | |
download | gcc-382b88088fecc4dd58ee8ae581944a3c1ca446ba.tar.gz |
libiberty: fix --enable-install-libiberty flag [PR 56780]
Commit 199570 fixed the --disable-install-libiberty behavior, but it also
added a bug where the enable path never works because the initial clear
of target_header_dir wasn't deleted. So we end up initializing properly
at the top only to reset it at the end all the time.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206367 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libiberty/ChangeLog | 6 | ||||
-rwxr-xr-x | libiberty/configure | 1 | ||||
-rw-r--r-- | libiberty/configure.ac | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 9a5ace1a2b6..ad0b1bdfebe 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,9 @@ +2014-01-06 Mike Frysinger <vapier@gentoo.org> + + PR other/56780 + * configure.ac: Delete target_header_dir assignment. + * configure: Regenerated. + 2014-01-06 Gary Benson <gbenson@redhat.com> * cp-demangle.c (struct d_print_info): New fields diff --git a/libiberty/configure b/libiberty/configure index 8ea54da6613..7bde9b38f19 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -5510,7 +5510,6 @@ fi setobjs= CHECK= -target_header_dir= if test -n "${with_target_subdir}"; then # We are being configured as a target library. AC_REPLACE_FUNCS diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 4ad88a984d7..d6180bcddd9 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -411,7 +411,6 @@ fi setobjs= CHECK= -target_header_dir= if test -n "${with_target_subdir}"; then # We are being configured as a target library. AC_REPLACE_FUNCS |