Commit 26bbb206 by Mike Stump

Makefie.in (objc-headers): Don't try and install the headers if the objc…

Makefie.in (objc-headers): Don't try and install the headers if the objc directory has been removed.

        * Makefie.in (objc-headers): Don't try and install the headers if
        the objc directory has been removed.

From-SVN: r13548
parent 158c9e58
...@@ -1881,10 +1881,12 @@ objc-headers: stmp-fixinc ...@@ -1881,10 +1881,12 @@ objc-headers: stmp-fixinc
thisdir1=`pwd`; \ thisdir1=`pwd`; \
srcdir1=`cd $(srcdir); pwd`; \ srcdir1=`cd $(srcdir); pwd`; \
cd objc; \ cd objc; \
$(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \ if [ -f $${srcdir1}/objc/Makefile ]; then \
srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \ $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \ srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include; \
fi
touch objc-headers touch objc-headers
# Files related to the fixproto script. # Files related to the fixproto script.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment