diff options
author | DJ Delorie <dj@redhat.com> | 2002-07-01 18:02:30 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-07-01 18:02:30 +0000 |
commit | b39b76b8b5e25817d823611982a8b283336adadf (patch) | |
tree | 588957e3800521c549c613f17405cb56fa1db5e0 /libiberty/Makefile.in | |
parent | 179d3252e3ee882c6c4127d291403b85727e5173 (diff) | |
download | gdb-b39b76b8b5e25817d823611982a8b283336adadf.zip gdb-b39b76b8b5e25817d823611982a8b283336adadf.tar.gz gdb-b39b76b8b5e25817d823611982a8b283336adadf.tar.bz2 |
merge from gcc
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 |