summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-07-02 04:21:13 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-07-02 20:22:33 +0200
commit69b236024113da1eadc0b7d2d297308cec48bf65 (patch)
tree7a53bf0285d6c5dbfe70b2e53bb6342378366c39 /support
parent68b2218cb5b3758e60b8cff399ca17c5153663cd (diff)
Revert "dependencies: ensure that DESTDIR isn't set when running Buildroot"
We should instead simply unset it at runtime, like we do for PKG_CONFIG_PATH. This reverts commit 9910eba33adb2b783b0df5d90a857816e82fbd55. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/dependencies/dependencies.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 43ec3cc0f..c47ffcf43 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -48,12 +48,6 @@ if test -n "$PERL_MM_OPT" ; then
exit 1
fi
-if test -n "$DESTDIR" ; then
- /bin/echo -e "\nYou have the DESTDIR environment variable set. Please"
- /bin/echo -e "unset it so that Buildroot can work properly."
- exit 1
-fi
-
# Verify that which is installed
if ! which which > /dev/null ; then
/bin/echo -e "\nYou must install 'which' on your build machine\n";