diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-16 11:18:29 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-16 11:18:29 +0000 |
commit | ceef40146f64415e3e046f724029b3e13544ecaf (patch) | |
tree | 05b783eccf7bc5e71f0b34b073ec9bfaf2f41c7f | |
parent | 18199aa7b69102c99c5b6c2382f039823c781e3b (diff) | |
download | buildroot-novena-ceef40146f64415e3e046f724029b3e13544ecaf.tar.gz buildroot-novena-ceef40146f64415e3e046f724029b3e13544ecaf.zip |
Dont create TARGET_DIR if it exists
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -246,7 +246,7 @@ endif @mkdir -p $(STAGING_DIR)/usr/include $(PROJECT_BUILD_DIR)/.root: - mkdir $(TARGET_DIR) + mkdir -p $(TARGET_DIR) if ! [ -d "$(TARGET_DIR)/bin" ] ; then \ if [ -d "$(TARGET_SKELETON)" ] ; then \ cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \ |