blob: b0b2e8ca92bbe3cbfd91cf6250aa7d98e4a80b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ad,v 1.1.4.1 2012/10/05 13:56:47 tron Exp $
This will sometimes help to avoid Segmentation Fault at
build time
--- lisp/cus-dep.el.orig 2012-08-23 05:33:42.000000000 +0000
+++ lisp/cus-dep.el
@@ -62,6 +62,7 @@ Usage: emacs -batch -l ./cus-dep.el -f c
(unless (or (string-match custom-dependencies-no-scan-regexp file)
(string-match preloaded file)
(not (file-exists-p file)))
+ (message file)
(erase-buffer)
(insert-file-contents file)
(goto-char (point-min))
|