From: Richard Stallman Date: Thu, 13 May 1993 22:30:37 +0000 (+0000) Subject: (OBJC, OBJECTIVE-C): Don't depend on objc-runtime. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d4d817479e431da6b0f4db09ec419b61aeb7f94;p=gcc.git (OBJC, OBJECTIVE-C): Don't depend on objc-runtime. (TAROUTOPTS): New variable. (install-headers-tar): Use TAROUTOPTS. From-SVN: r4441 --- diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 70f03cbf876..4f80dda6d67 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -235,6 +235,9 @@ LIBCONVERT = # Control whether header files are installed. INSTALL_HEADERS=install-headers +# Options for tar when copying trees. So HPUX can override it. +TAROUTOPTS = xpBf + # Select which version of fixincludes to use (I.E. regular versus SVR4) # This value is overridden directly by configure. FIXINCLUDES=fixincludes @@ -466,8 +469,9 @@ native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_C # Define the names for selecting languages in LANGUAGES. C c: cc1 C++ c++: cc1plus -OBJC objc: cc1obj objc-runtime -OBJECTIVE-C objective-c: cc1obj objc-runtime +# The next two ought to depend on objc-runtime, but that doesn't work yet. +OBJC objc: cc1obj +OBJECTIVE-C objective-c: cc1obj PROTO: proto # Really, really stupid make features, such as SUN's KEEP_STATE, may force @@ -1659,7 +1663,7 @@ install-include-dir: install-dir # Install the include directory using tar. install-headers-tar: stmp-headers install-include-dir - cd include; tar cf - . | (cd $(libsubdir)/include; tar xpBf - ) + cd include; tar cf - . | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - ) # Install the include directory using cpio. install-headers-cpio: stmp-headers install-include-dir