rump: Silence build process

The 'dest' target is renamed in the updated rump version  to 'dest.stage'. This
triggered some building steps, even when the targets already existed.

Issue #1409
This commit is contained in:
Sebastian Sumpf 2015-02-19 13:53:45 +01:00 committed by Christian Helmuth
parent 47b0b9b689
commit c13fbff8c1
1 changed files with 3 additions and 3 deletions

View File

@ -64,14 +64,14 @@ $(RUMP_TOOLS):
#
# Setup install directory
#
$(RUMP_OBJ)/dest: $(RUMP_TOOLS)
$(RUMP_OBJ)/dest.stage: $(RUMP_TOOLS)
CC=$(RUMP_CC) $(BUILD_CMD) setupdest
#
# Build librump
#
$(ARCHIVE): $(RUMP_OBJ)/dest
@echo "Building rump library ..."
$(ARCHIVE): $(RUMP_OBJ)/dest.stage
@echo "Building rump library ... $(ARCHIVE)"
CC=$(RUMP_CC) $(BUILD_CMD) -k build install
#