From: Eric Andersen Date: Wed, 15 Nov 2006 21:00:07 +0000 (-0000) Subject: make certain the target directory exists X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4c685f16589a657b2ad6b71b0d0961c15eb1c1d;p=buildroot.git make certain the target directory exists --- diff --git a/Makefile b/Makefile index eefa9e5825..71d2ded46e 100644 --- a/Makefile +++ b/Makefile @@ -103,6 +103,7 @@ $(STAGING_DIR): @ln -snf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib $(TARGET_DIR): + mkdir -p $(TARGET_DIR) if [ -d "$(TARGET_SKELETON)" ] ; then \ cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \ fi;