From: Stefan Monnier Date: Sun, 10 Oct 1999 01:45:54 +0000 (+0000) Subject: (dontcompile): look for the DONTCOMPILE variable rather X-Git-Tag: emacs-pretest-21.0.90~6484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa501770affe744f344a32ae67db12747f897fdd;p=emacs.git (dontcompile): look for the DONTCOMPILE variable rather than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile. --- diff --git a/make-dist b/make-dist index 3c57500e300..80758bce847 100755 --- a/make-dist +++ b/make-dist @@ -175,7 +175,8 @@ then bogosities= for file in $losers; do file1=`echo $file | sed -e "s|.*/||"` - if ! grep -q "dontcompilefiles:.* $file1\($\| \)" lisp/Makefile; then + if ! sed -n -e "/^DONTCOMPILE/,/[^\\]\$/p" lisp/Makefile | + grep -q "[ ]$file1\($\| \)"; then case $file in site-init.el | site-load.el | site-start.el | default.el) ;;