# HG changeset patch # User Oleksandr Gavenko # Date 1307448380 -10800 # Node ID 5bfd6f2d1ae7507564ae5ba30f399be82f68d9c6 # Parent f4806bc228604bc1e99130f3158070c00e3a22bc Use gmake on FreeBSD. diff -r f4806bc22860 -r 5bfd6f2d1ae7 .emacs-my --- a/.emacs-my Wed Jun 01 21:10:14 2011 +0300 +++ b/.emacs-my Tue Jun 07 15:06:20 2011 +0300 @@ -1212,8 +1212,10 @@ ;;; ---------------------------------------------------------------- (message "compile") -(setq compile-auto-highlight t - compile-command "make ") +(setq compile-auto-highlight t) +(setq compile-command "make ") +(when (eq system-type 'berkeley-unix) + (setq compile-command "gmake ")) ;; compilation window shall scroll down if not 0 (setq compilation-scroll-output 1)