diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-07-25 08:17:44 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-07-25 08:45:09 -0400 |
commit | 7ec8fad8a03e1c46d753507befa786ec5453a35e (patch) | |
tree | 99c6e77945a2fbe3f8169cc3779d2d66e2fa7a3e /Makefile | |
parent | New IMAPS certificate for localhost (diff) |
Don't echo substitutions (i.e. passwords) to screet in ./dm build
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -149,7 +149,7 @@ build/bin/msmtp/msmtp-default: build/.msmtprc chmod 755 build/bin/msmtp/* build/%: % $(SUBSTS_FILE) - [ -d $(dir $@) ] || mkdir -p $(dir $@) + @[ -d $(dir $@) ] || mkdir -p $(dir $@) ( [ -d $< ] && rsync -a $</* $@/ ) || rsync -a $< $@ @# sed will only be called if $* is in LOCAL_FILES. @# Thought of using ifeq/ifneq, but the gmake manual reads: @@ -157,7 +157,7 @@ build/%: % $(SUBSTS_FILE) @# you cannot use automatic variables in the tests of conditionals @# because they are not defined until recipes are run (see Automatic @# Variables)." - [ "$(filter $*,$(LOCAL_FILES))" != "$*" ] || sed $(call get-sed-args,VARS_$*) $< > $@ + @[ "$(filter $*,$(LOCAL_FILES))" != "$*" ] || sed $(call get-sed-args,VARS_$*) $< > $@ install: build rsync -a build/ ~ |