emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Considered Harmful 73d213: "Comint, term, and compile new set Emacs"


From: Paul Eggert
Subject: Re: Considered Harmful 73d213: "Comint, term, and compile new set Emacs"
Date: Tue, 5 Apr 2016 17:25:09 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.1

On 04/05/2016 03:08 PM, Phillip Lord wrote:
The main problem is that use of cask tends to weave in and out of
different Emacs and also Makefiles. So, I use this:

EMACS ?= emacs
CASK ?= cask

-include makefile-local

all: install test

install:
        EMACS=$(EMACS) cask install

Which (did) work fine on Emacs-25

But that doesn't work on Emacs 24, right? And if you do something like the following:

    EMACS ?= emacs
    CASK ?= cask

    ifeq ($(EMACS),t)
      EMACS = emacs
    endif

    install:
        EMACS=$(EMACS) cask install

This should work with both Emacs 24 and emacs-25 current.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]