diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-20 23:45:51 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-20 23:45:51 +0000 |
commit | 37c96b9191c5b584828e137c24dc80b658de971d (patch) | |
tree | edffd1c6448b9822ddbbdcdeb94fc0b5794059c1 /gcc/Makefile.in | |
parent | 4075a11941cf8b54c0611c0995909436920ad3b2 (diff) | |
download | gcc-37c96b9191c5b584828e137c24dc80b658de971d.tar.gz |
2003-10-20 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in: Get parsedir and docobjdir from configure.
* configure.in: Recogonize --enable-generated-files-in-srcdir.
Pass along parsedir and docobjdir.
* configure: Regenerate.
* doc/install.texi: Document --enable-generated-files-in-srcdir.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72731 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 455c29444fd..06dc4708d34 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -76,11 +76,10 @@ program_transform_cross_name = @program_transform_name@ srcdir = @srcdir@ # These directories contain files that are provided as part of a FSF tarball, -# but not provided in CVS. Some GCC integrators like to use the CVS sources -# but keep them read-only during a build, and so change these variables -# from these defaults. -parsedir = $(srcdir) -docobjdir = $(srcdir)/doc +# but not provided in CVS. Unless --enable-generated-files-in-srcdir is +# specified these files will be put in the object directory. +parsedir = @parsedir@ +docobjdir = @docobjdir@ docdir = $(srcdir)/doc # Top build directory, relative to here. |