diff options
author | Richard Stallman <rms@gnu.org> | 1992-11-05 23:36:09 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-11-05 23:36:09 +0000 |
commit | 51d05e9f9a4cfa488415f66e89fe23a32102ee16 (patch) | |
tree | c4c44432096a2b7b25ce0d353b5796cc01ddbcb0 /gcc/Makefile.in | |
parent | 99022b47692448be61dc25b45894f6b776ad2491 (diff) | |
download | gcc-51d05e9f9a4cfa488415f66e89fe23a32102ee16.zip gcc-51d05e9f9a4cfa488415f66e89fe23a32102ee16.tar.gz gcc-51d05e9f9a4cfa488415f66e89fe23a32102ee16.tar.bz2 |
(install-fixincludes): Add semicolon in new for-loop.
From-SVN: r2694
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 01992a7..0a2f74f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1625,7 +1625,7 @@ install-fixincludes: install-headers if [ -d $$dir ]; \ then \ $(srcdir)/$(FIXINCLUDES) $(libsubdir)/include $$dir $(srcdir); \ - else true; fi \ + else true; fi; \ done -cd $(libsubdir)/include; \ if [ -f limits.h ]; then \ |