handle case where autoconf sets MAKE_P to ./install-sh

Reviewed By: martinoluca

Differential Revision: D3126234

fb-gh-sync-id: 32fbcb7
fbshipit-source-id: 32fbcb7
master
Jules Villard 9 years ago committed by Facebook Github Bot 9
parent 72c2a098ab
commit a227202adc

@ -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@

Loading…
Cancel
Save