Skip to content

Commit

Permalink
Merge pull request #3545 from gdh1995/relative-path-for-soft-links
Browse files Browse the repository at this point in the history
use relative paths on making build/tools/ links
  • Loading branch information
jeffdonahue committed Jan 29, 2016
2 parents 5592e59 + 14d0bb4 commit eac9dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ $(TEST_CXX_BINS): $(TEST_BIN_DIR)/%.testbin: $(TEST_CXX_BUILD_DIR)/%.o \
# Target for extension-less symlinks to tool binaries with extension '*.bin'.
$(TOOL_BUILD_DIR)/%: $(TOOL_BUILD_DIR)/%.bin | $(TOOL_BUILD_DIR)
@ $(RM) $@
@ ln -s $(abspath $<) $@
@ ln -s $(notdir $<) $@

$(TOOL_BINS): %.bin : %.o | $(DYNAMIC_NAME)
@ echo CXX/LD -o $@
Expand Down

0 comments on commit eac9dd8

Please sign in to comment.