Merge pull request #1210 from milkypostman/timeout-makefile-fix

Allow Makefile to work if the "timeout" binary is not available
This commit is contained in:
Donald Ephraim Curtis 2013-12-01 10:55:50 -08:00
commit aaf0c5b758

View file

@ -17,6 +17,7 @@ endif
EVAL := $(EVAL) --no-site-file --batch -l package-build.el --eval
TIMEOUT := $(shell which timeout && echo "timeout -k 60 600")
all: packages packages/archive-contents json index
@ -75,7 +76,7 @@ $(RCPDIR)/.dirstamp: .FORCE
$(RCPDIR)/%: .FORCE
@echo " • Building recipe $(@F) ..."
- timeout -k 60 600 $(EVAL) "(package-build-archive '$(@F))"
- $(TIMEOUT) $(EVAL) "(package-build-archive '$(@F))"
@echo " ✓ Wrote $$(ls -lsh $(PKGDIR)/$(@F)-*) "
@echo " Sleeping for $(SLEEP) ..."