diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-11-15 21:00:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-11-15 21:00:07 +0000 |
commit | a4c685f16589a657b2ad6b71b0d0961c15eb1c1d (patch) | |
tree | ac06620ba5b2eff6ec488a35bd8c9ae0a0c9d71e | |
parent | ba70f94e629ece312a4bf2b9b663a4f73d6032bb (diff) | |
download | buildroot-novena-a4c685f16589a657b2ad6b71b0d0961c15eb1c1d.tar.gz buildroot-novena-a4c685f16589a657b2ad6b71b0d0961c15eb1c1d.zip |
make certain the target directory exists
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |