diff options
Diffstat (limited to 'development/xemacs/patches/lib64.patch')
-rw-r--r-- | development/xemacs/patches/lib64.patch | 49 |
1 files changed, 20 insertions, 29 deletions
diff --git a/development/xemacs/patches/lib64.patch b/development/xemacs/patches/lib64.patch index 41f985bd43cef..4a1ff07097bc7 100644 --- a/development/xemacs/patches/lib64.patch +++ b/development/xemacs/patches/lib64.patch @@ -1,29 +1,20 @@ ---- xemacs-21.4.22/lisp/find-paths.el.orig 2011-08-05 13:42:44.545564371 -0400 -+++ xemacs-21.4.22/lisp/find-paths.el 2011-08-05 13:43:10.205459415 -0400 -@@ -103,7 +103,7 @@ - (or - ;; installed - (paths-file-readable-directory-p (paths-construct-path (list directory -- "lib" -+ "lib64" - emacs-program-name))) - ;; in-place or windows-nt - (and -@@ -216,7 +216,7 @@ - (paths-find-emacs-directory roots - (file-name-as-directory - (paths-construct-path (list -- "lib" -+ "lib64" - emacs-program-name))) - base - envvar default -@@ -230,7 +230,7 @@ - (paths-find-emacs-directory roots - (file-name-as-directory - (paths-construct-path -- (list "lib" -+ (list "lib64" - (construct-emacs-version-name)))) - base - envvar default +--- xemacs-21.5.34/lisp/find-paths.el.old 2016-01-04 18:49:46.227528964 +0700 ++++ xemacs-21.5.34/lisp/find-paths.el 2016-01-04 18:50:32.334978047 +0700 +@@ -226,7 +226,7 @@ + roots + (file-name-as-directory + (paths-construct-path (list +- (if arch-dependent-p "lib" "share") ++ (if arch-dependent-p "lib64" "share") + emacs-program-name))) + bases + envvar default)) +@@ -276,7 +276,7 @@ + roots + (file-name-as-directory + (paths-construct-path +- (list (if arch-dependent-p "lib" "share") ++ (list (if arch-dependent-p "lib64" "share") + (construct-emacs-version-name)))) + bases + envvar default)) |