From 1b2b36c498a540e711679b816fddcd293cde8173 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Thu, 9 Feb 2017 04:12:28 -0600 Subject: [PATCH] fix makefile --- Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 619fa87..18b9fe2 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ #!/bin/make -f -DO=./build/utils.sh -SET_CONFIG=$(DO) set-config +DO := ./build/utils.sh +SET_CONFIG := $(DO) set-config +DESTDIR ?= '/' define colorecho - @tput setaf 118 - @echo $1 - @tput sgr0 + @tput setaf 118 || true + @echo $1 || true + @tput sgr0 || true endef