Some protection for cross arch package building

This commit is contained in:
Dale Weiler 2013-03-21 04:47:46 +00:00
parent 1b02a5204a
commit c42a853e0b

View file

@ -1,3 +1,8 @@
UNAME := $(shell uname -m)
ifneq ($(shell uname -m), x86_64)
$(error Cannot build packages without an x86_64 capable CPU)
endif
base:
$(MAKE) -C deb/
$(MAKE) -C deb/ CARCH=i686
@ -9,3 +14,5 @@ base:
clean:
@rm -f *.deb
@rm -f *.pkg.tar.xz
all: base