diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-31 00:13:11 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-31 00:13:11 -0400 |
commit | ffc4e50464d3e73efb7ac29bc77cdba6ea33d3ea (patch) | |
tree | a7d3e6ae3da43fe3477f39b9d7e03c2865542e7f /build-aux | |
parent | db898def01041ab564c78331a31aea99165c8d36 (diff) |
fix: values no longer percolate up
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.once.tail/00-dist.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/Makefile.once.tail/00-dist.mk b/build-aux/Makefile.once.tail/00-dist.mk index 3990f57..f4fce92 100644 --- a/build-aux/Makefile.once.tail/00-dist.mk +++ b/build-aux/Makefile.once.tail/00-dist.mk @@ -15,7 +15,7 @@ _dist.copyfile = $(MKDIR_P) $(dir $2) && $(CP) -T $1 $2 _dist.addfile = $(call _dist.copyfile,$3,$2/$(call at.relto,$1,$3)) -$(topoutdir)/$(dist.pkgname)-$(dist.version): $(std.src_files/$(topoutdir)) $(std.gen_files/$(topoutdir)) +$(topoutdir)/$(dist.pkgname)-$(dist.version): $(foreach v,$(filter std.src_files/% std.gen_files/%,$(.VARIABLES)),$($v)) $(RM) -r $@ @PS4='' && set -x && \ $(MKDIR) $(@D)/tmp.$(@F).$$$$ && \ |