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 /libobjc | |
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 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 4 | ||||
-rw-r--r-- | libobjc/Makefile.in | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 99f7769dd40..0fdbb9966e6 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,7 @@ +2004-05-25 Daniel Jacobowitz <drow@false.org> + + * Makefile.in: Add .NOEXPORT. + 2004-05-25 Andrew Pinski <pinskia@physics.uc.edu> Merge from the libobjc-branch diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index 28d22a4d6a7..7ee29f4bf0e 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -348,3 +348,7 @@ maintainer-clean realclean: distclean .PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \ install-strip dist installcheck installdirs + +# Don't export variables to the environment, in order to not confuse +# configure. +.NOEXPORT: |