aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-12-14 15:41:17 -0500
committerGlenn Morris2018-12-14 15:41:17 -0500
commit760b091ac5c6e8e49ebbf7c080f500cfad2e1579 (patch)
tree031e3133658a320e6982f5dc50f448b39a2a7caf
parentaf1bdfccd4867eed127a7d3d15b24baa9d5954bd (diff)
downloademacs-760b091ac5c6e8e49ebbf7c080f500cfad2e1579.tar.gz
emacs-760b091ac5c6e8e49ebbf7c080f500cfad2e1579.zip
* make-dist: Improve no-byte-compile check.
-rwxr-xr-xmake-dist2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index 7c7668b066f..926665b8f0a 100755
--- a/make-dist
+++ b/make-dist
@@ -266,7 +266,7 @@ if [ $check = yes ]; then
266 266
267 bogosities= 267 bogosities=
268 for file in $losers; do 268 for file in $losers; do
269 grep -q "no-byte-compile: t" $file && continue 269 grep -q "^;.*no-byte-compile: t" $file && continue
270 case $file in 270 case $file in
271 site-init.el | site-load.el | site-start.el | default.el) continue ;; 271 site-init.el | site-load.el | site-start.el | default.el) continue ;;
272 esac 272 esac