diff options
author | Douglas B Rupp <rupp@gnat.com> | 2002-07-01 05:38:50 +0000 |
---|---|---|
committer | Douglas Rupp <rupp@gcc.gnu.org> | 2002-07-01 05:38:50 +0000 |
commit | 7fda878c257e72e0576d58885e773fb5acada5b7 (patch) | |
tree | 3e44695fd13b2974c16819a6201917280773d1bc /libiberty/Makefile.in | |
parent | 32c4621e890c02f2583d309234e1d404549dcf48 (diff) | |
download | gcc-7fda878c257e72e0576d58885e773fb5acada5b7.zip gcc-7fda878c257e72e0576d58885e773fb5acada5b7.tar.gz gcc-7fda878c257e72e0576d58885e773fb5acada5b7.tar.bz2 |
configure.in (OUTPUT_OPTION,NO_MINUS_C_MINUS_O): Configure.
2002-06-30 Douglas Rupp <rupp@gnat.com>
* configure.in (OUTPUT_OPTION,NO_MINUS_C_MINUS_O): Configure.
* Makefile.in (OUTPUT_OPTION): Use.
From-SVN: r55127
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 6018972..5a25987 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -52,6 +52,9 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs +# Some compilers can't handle cc -c blah.c -o foo/blah.o. +OUTPUT_OPTION = @OUTPUT_OPTION@ + AR = @AR@ AR_FLAGS = rc @@ -117,7 +120,7 @@ COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiber if [ x"$(PICFLAG)" != x ]; then \ $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \ else true; fi - $(COMPILE.c) $< + $(COMPILE.c) $< $(OUTPUT_OPTION) # NOTE: If you add new files to the library, add them to this list # (alphabetical), and add them to REQUIRED_OFILES, or |