From: Gustavo Zacarias Date: Thu, 11 Jul 2013 14:37:33 +0000 (-0300) Subject: Makefile: unexport RUBYOPT X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bed61a7be37cd95b05b8fa9c48cab77e81c93efd;p=buildroot.git Makefile: unexport RUBYOPT On Gentoo systems with ruby installed RUBYOPT is set and causes build breakage for some packages that needs host-ruby (example: webkit). Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index f6e9965948..f477124935 100644 --- a/Makefile +++ b/Makefile @@ -180,6 +180,9 @@ unexport PKG_CONFIG_SYSROOT_DIR # steps of some packages. unexport DESTDIR +# Causes breakage with packages that needs host-ruby +unexport RUBYOPT + # 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