1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 16:51:46 -07:00

Raise an error if variety is something other than rash, hot, or cool.

Copied from Perforce
 Change: 183499
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2013-10-01 10:53:09 +01:00
parent 4950182f38
commit 73989d332e

View file

@ -134,6 +134,9 @@ ifeq ($(VARIETY),cool)
CFLAGS=$(CFLAGSCOMMON) $(CFCOOL)
CFLAGSLAX=$(CFLAGSCOMMONLAX) $(CFCOOL)
else
ifneq ($(VARIETY),)
$(error Variety "$(VARIETY)" not recognized: must be rash/hot/cool)
endif
endif
endif
endif