diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-07-05 12:39:03 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-07-05 12:39:03 +0000 |
commit | bf7e917ec8f940ca0665cbb16b1850e623637a57 (patch) | |
tree | 6448429013a785bfbc568a7d45b98f69b4f4c8c1 /make-dist | |
parent | cadf6ba27cb7f85395009e47dabc28efe945d087 (diff) | |
download | emacs-bf7e917ec8f940ca0665cbb16b1850e623637a57.tar.gz |
Check DONTCOMPILE in lisp/Makefile.in instead of
lisp/Makefile. Distribute lisp/Makefile.in instead of
lisp/Makefile.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-dist b/make-dist index 5aa1c17ca5e..df78591625a 100755 --- a/make-dist +++ b/make-dist @@ -197,7 +197,7 @@ then bogosities= for file in $losers; do file1=`echo $file | sed -e "s|.*/||"` - if ! sed -n -e "/^DONTCOMPILE/,/[^\\]\$/p" lisp/Makefile | + if ! sed -n -e "/^DONTCOMPILE/,/[^\\]\$/p" lisp/Makefile.in | grep -q "[ ]$file1\($\| \)"; then case $file in site-init.el | site-load.el | site-start.el | default.el) @@ -319,7 +319,7 @@ echo "Making links to \`lisp' and its subdirectories" ln [a-zA-Z]*.dat ../${tempdir}/lisp ## simula.el doesn't keep abbreviations in simula.defns any more. ## ln [a-zA-Z]*.defns ../${tempdir}/lisp - ln ChangeLog Makefile makefile.nt ChangeLog.? ../${tempdir}/lisp + ln ChangeLog Makefile.in makefile.nt ChangeLog.? ../${tempdir}/lisp test -f README && ln README ../${tempdir}/lisp (cd ../${tempdir}/lisp rm -f TAGS =* |