diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-01-06 18:15:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-01-07 09:24:44 -0500 |
commit | 5f14d9c9e3f61cb79da5e7697af2fe264def852f (patch) | |
tree | 3de7caf742705960a280a4262ec82790abefc1c0 /libiberty | |
parent | b9c0a80c9deace8fda57ee6b558d2f73725c4823 (diff) | |
download | fsf-binutils-gdb-5f14d9c9e3f61cb79da5e7697af2fe264def852f.zip fsf-binutils-gdb-5f14d9c9e3f61cb79da5e7697af2fe264def852f.tar.gz fsf-binutils-gdb-5f14d9c9e3f61cb79da5e7697af2fe264def852f.tar.bz2 |
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
(cherry picked from commit 369be6981b26787b2685e3b8c6da779dae8ce35f)
Diffstat (limited to 'libiberty')
-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 89e108a..a1e94c8 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. + 2013-09-10 Paolo Carlini <paolo.carlini@oracle.com> PR bootstrap/58386 diff --git a/libiberty/configure b/libiberty/configure index e601ccd..878fa53 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -5507,7 +5507,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 fcea46f..f17e6b6 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -405,7 +405,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 |