diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-20 22:16:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-20 22:16:26 +0000 |
commit | 0ebd9bdfd7c1f26233a620e50ea2c324fc80940e (patch) | |
tree | c61c289a5e2878e896942577915a4829ccbe28c1 /Makefile.in | |
parent | 3245894f02a3393efa837420f505eea5a81baaad (diff) | |
download | emacs-0ebd9bdfd7c1f26233a620e50ea2c324fc80940e.tar.gz |
(paths-force): Depend on src/paths.h
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7ecd8985be8..71e2a0a0503 100644 --- a/Makefile.in +++ b/Makefile.in @@ -219,7 +219,10 @@ src/paths.h: Makefile ${srcdir}/src/paths.h.in # something notable, so the only unnecessary work we do is in building # paths.h.tmp$$$$, which isn't much. # Note that sed is not in /bin on 386bsd. -paths-force: FRC +# We depend on src/paths.h here to prevent simultaneous execution of +# that rule and this one, in a parallel make. +# It is possible for paths.h to be updated twice--but that would happen anyway. +paths-force: FRC src/paths.h @echo "Producing \`src/paths.h' from \`src/paths.h.in'." @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \ buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ |