Commit 4d153cff authored by Michael Roth's avatar Michael Roth Committed by Peter Korsgaard
Browse files

Fix download directory in default configs



Commit a07d6b9d changed the meaning
of $(BASE_DIR). Previously it was the top level buildroot directory,
now it is the 'output' directory.
As an side effect, the download directory 'dl' was moved to 'output/dl'.

In commit 416323e9 the default download
directory was moved back to the top level of buildroot.

So the various default configurations should reflect this. Fix them.

Signed-off-by: default avatarMichael Roth <mroth@nessie.de>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 44c10ff6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(BASE_DIR)/dl"
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_COPYTO=""

#
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(BASE_DIR)/dl"
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_COPYTO=""

#
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(BASE_DIR)/dl"
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_COPYTO=""

#
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(BASE_DIR)/dl"
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_COPYTO=""

#
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ BR2_GIT="git clone"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(BASE_DIR)/dl"
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_COPYTO=""

#
Loading