Skip to content

Commit

Permalink
handle case where autoconf sets MAKE_P to ./install-sh
Browse files Browse the repository at this point in the history
Reviewed By: martinoluca

Differential Revision: D3126234

fb-gh-sync-id: 32fbcb7
fbshipit-source-id: 32fbcb7
  • Loading branch information
jvillard authored and Facebook Github Bot 9 committed Apr 1, 2016
1 parent 72c2a09 commit a227202
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile.config.in
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,9 @@ REMOVE_DIR = rm -rvf
endif
COPY = cp -f -p
COPY_DIR = cp -Rf
MKDIR_P = @MKDIR_P@
MKDIR_P_CMD = case "@MKDIR_P@" in \
./*) printf "$(ROOT_DIR)/@MKDIR_P@\n";; \
*) printf "@MKDIR_P@\n";; \
esac
MKDIR_P = $(shell $(MKDIR_P_CMD))
LN_S = @LN_S@

0 comments on commit a227202

Please sign in to comment.