From: Thomas Petazzoni Date: Mon, 2 Jul 2012 04:21:14 +0000 (+0000) Subject: Ensure DESTDIR will not confuse the build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91123a6fab2770ced312fc54a69f4d83f3a2e1e5;p=buildroot.git Ensure DESTDIR will not confuse the build Having DESTDIR defined will confuse the build of certain packages, so we ensure that it is undefined from the environment when Buildroot starts. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index bcbe9fc10c..b80477f7fc 100644 --- a/Makefile +++ b/Makefile @@ -168,6 +168,10 @@ export HOSTCC_NOCCACHE HOSTCXX_NOCCACHE # Make sure pkg-config doesn't look outside the buildroot tree unexport PKG_CONFIG_PATH +# Having DESTDIR set in the environment confuses the installation +# steps of some packages. +unexport DESTDIR + # bash prints the name of the directory on 'cd ' if CDPATH is # set, so unset it here to not cause problems. Notice that the export # line doesn't affect the environment of $(shell ..) calls, so