Skip to content

Commit

Permalink
fix clean checkout missing tagets, silence a spurious print (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
osresearch committed May 4, 2018
1 parent 0b644b1 commit 7f8cec0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ define do-copy =
$(call do,INSTALL ,$1 => $2',\
if ! cmp --quiet "$1" "$2" ; then \
echo "$(DATE) UNCHANGED $(1:$(pwd)/%=%)" ; \
fi
fi ; \
cp -a "$1" "$2"; \
)
@sha256sum "$(2:$(pwd)/%=%)"
Expand Down Expand Up @@ -293,7 +293,7 @@ define define_module =

# Target for all of the outputs, which depend on their dependent modules
# being built, as well as this module being configured
$(build)/$($1_dir)/.build: $(call outputs,$1)
$(call outputs,$1): $(build)/$($1_dir)/.build

# If any of the outputs are missing, we should force a rebuild
# of the entire module
Expand All @@ -305,7 +305,7 @@ define define_module =
$(foreach d,$($1_depends),$(build)/$($d_dir)/.build) \
$(dir $($1_config_file_path)).configured \

@echo "$(DATE) MAKE $1 --- $$@"
@echo "$(DATE) MAKE $1"
+@( \
echo "$(MAKE) \
-C \"$(build)/$($1_dir)\" \
Expand Down

0 comments on commit 7f8cec0

Please sign in to comment.