diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-25 22:24:26 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-25 22:24:26 +0000 |
commit | 70fbceeeedc51a8332c76973324a1cf8c190b8cd (patch) | |
tree | 18ace88da5de1ff7bcff9436967b47bce0ab1306 | |
parent | 980697fdbeb8b8651fc32d946815b89aeff458e5 (diff) | |
download | gcc-70fbceeeedc51a8332c76973324a1cf8c190b8cd.zip gcc-70fbceeeedc51a8332c76973324a1cf8c190b8cd.tar.gz gcc-70fbceeeedc51a8332c76973324a1cf8c190b8cd.tar.bz2 |
(stmp-fixproto): Create include subdir if doesn't exist.
From-SVN: r6159
-rw-r--r-- | gcc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 6a45cd6..e5fd1fc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1618,6 +1618,7 @@ fixhdr.ready: fix-header # if it has already been run on the files in `include'. stmp-fixproto: fixhdr.ready fixproto stmp-headers @echo "Various warnings and error messages from fixproto are normal" + -if [ -d include ] ; then true; else mkdir include; fi if [ -f include/fixed ] ; then true; \ else \ CPP="$(GCC_FOR_TARGET) -E"; export CPP; \ |