diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-21 01:17:09 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-21 01:17:09 +0000 |
commit | ec2faf7df9f5f733667c77c132a0e5d76fd9c893 (patch) | |
tree | c3f7ff5df2330d8713258e5e8f358a1fb73ead4e /make | |
parent | 728164e5f7e03c4eb93be4a26030492ad34aa091 (diff) | |
download | buildroot-novena-ec2faf7df9f5f733667c77c132a0e5d76fd9c893.tar.gz buildroot-novena-ec2faf7df9f5f733667c77c132a0e5d76fd9c893.zip |
Make sure the necessary directories exist.
Diffstat (limited to 'make')
-rw-r--r-- | make/sed.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/make/sed.mk b/make/sed.mk index cb4379d76..aef55e185 100644 --- a/make/sed.mk +++ b/make/sed.mk @@ -29,6 +29,9 @@ sed-source: $(DL_DIR)/$(SED_SOURCE) # ############################################################# $(SED_DIR1)/.unpacked: $(DL_DIR)/$(SED_SOURCE) + mkdir -p $(TOOL_BUILD_DIR) + mkdir -p $(DL_DIR) + mkdir -p $(STAGING_DIR)/bin; $(SED_CAT) $(DL_DIR)/$(SED_SOURCE) | tar -C $(TOOL_BUILD_DIR) -xvf - touch $(SED_DIR1)/.unpacked |