diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-17 03:44:53 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-17 03:44:53 +0000 |
commit | 3d77b9c27d670837a69730746f0b8c63590b4852 (patch) | |
tree | d7f48bdbcc2c7b8073fce578b51a68d67602c68b | |
parent | f6ba5fe9cc3c832320bd34c32ae5b51be8c31fe9 (diff) | |
download | gcc-3d77b9c27d670837a69730746f0b8c63590b4852.zip gcc-3d77b9c27d670837a69730746f0b8c63590b4852.tar.gz gcc-3d77b9c27d670837a69730746f0b8c63590b4852.tar.bz2 |
Correct previous patch.
From-SVN: r2495
-rw-r--r-- | gcc/make-cc1.com | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/make-cc1.com b/gcc/make-cc1.com index 14838f2..1123904 100644 --- a/gcc/make-cc1.com +++ b/gcc/make-cc1.com @@ -181,9 +181,8 @@ $!'f$verify(0) $ endif $! $compile_cc1: -$if (DO_CC1 + DO_CC1PLUS) .ne.0 +$if (DO_CC1 + DO_CC1OBJ) .ne.0 $ then -$write sys$output "testing" $if (f$search("C-PARSE.Y") .eqs. "") then goto yes_yfiles $if (f$cvtime(f$file_attributes("C-PARSE.IN","RDT")).gts. - f$cvtime(f$file_attributes("C-PARSE.Y","RDT"))) - @@ -193,8 +192,8 @@ $if (f$cvtime(f$file_attributes("C-PARSE.IN","RDT")).gts. - f$cvtime(f$file_attributes("OBJC-PARSE.Y","RDT"))) - then goto yes_yfiles $GOTO no_yfiles -$echo "Now processing c-parse.in to generate c-parse.y and objc-parse.y." $yes_yfiles: +$echo "Now processing c-parse.in to generate c-parse.y and objc-parse.y." $ edit/tpu/nojournal/nosection/nodisplay/command=sys$input ! ! Read c-parse.in, write c-parse.y and objc-parse.y, depending on |