diff options
author | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-25 19:37:02 +0000 |
---|---|---|
committer | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-25 19:37:02 +0000 |
commit | 428b4753466a75f933e4b5092ed16dccd75b5b4a (patch) | |
tree | d123b39de6c3546f61e3c9de635f2007bd00b77c /libiberty | |
parent | 1f5186f87d443eccc41ce890b075f4c0db53931c (diff) | |
download | gcc-428b4753466a75f933e4b5092ed16dccd75b5b4a.tar.gz |
* Makefile.in: Add .NOEXPORT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82256 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 82547e29bfe..0bd3266ca32 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2004-05-25 Daniel Jacobowitz <drow@false.org> + + * Makefile.in: Add .NOEXPORT. + 2004-04-29 Douglas B Rupp <rupp@gnat.com> * mkstemps.c (mkstemps) [VMS]: Remove special open option. Update diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 78cc4bca864..9f95c01327f 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -1057,3 +1057,6 @@ $(CONFIGURED_OFILES): stamp-picdir else true; fi $(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION) +# Don't export variables to the environment, in order to not confuse +# configure. +.NOEXPORT: |