Skip to content

Commit

Permalink
[Make install] install InferClang++ in the right way
Browse files Browse the repository at this point in the history
Summary: `make install` was creating symbolic link with absolute path of `InferClang`. Fix it

Reviewed By: martinoluca, dulmarod

Differential Revision: D4220519

fbshipit-source-id: 166714b
  • Loading branch information
Andrzej Kotulski committed Nov 23, 2016
1 parent a2f9ce3 commit 9393c4f
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 @@ -309,7 +309,7 @@ ifeq ($(BUILD_C_ANALYZERS),yes)
done
$(INSTALL_PROGRAM) -C $(INFERCLANG_BIN) $(DESTDIR)$(libdir)/infer/infer/bin/
(cd $(DESTDIR)$(libdir)/infer/infer/bin/ && \
$(LN_S) -f $(INFERCLANG_BIN) $(INFERCLANG_BIN)++)
$(LN_S) -f InferClang InferClang++)
endif
ifneq ($(XCODE_SELECT),no)
@for i in $$(find infer/lib/xcode_wrappers/*); do \
Expand Down

0 comments on commit 9393c4f

Please sign in to comment.