[Buildroot] [git commit] toolchain-wrapper.c: unbreak BR_CROSS_PATH_ABS handling

Peter Korsgaard peter at korsgaard.com
Mon Oct 5 06:25:17 UTC 2015


commit: http://git.buildroot.net/buildroot/commit/?id=ccdb179d24a2d99ce4f3078bfcd2ffee5af60701
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes #8386

We should check if BR_CROSS_PATH_ABS is defined, not if it evalutates to
true for the pre processor.

Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 toolchain/toolchain-wrapper.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/toolchain/toolchain-wrapper.c b/toolchain/toolchain-wrapper.c
index 11f93f0..632696c 100644
--- a/toolchain/toolchain-wrapper.c
+++ b/toolchain/toolchain-wrapper.c
@@ -144,7 +144,7 @@ int main(int argc, char **argv)
 	/* Fill in the relative paths */
 #ifdef BR_CROSS_PATH_REL
 	ret = snprintf(path, sizeof(path), "%s/" BR_CROSS_PATH_REL "/%s", absbasedir, basename);
-#elif BR_CROSS_PATH_ABS
+#elif defined(BR_CROSS_PATH_ABS)
 	ret = snprintf(path, sizeof(path), BR_CROSS_PATH_ABS "/%s", basename);
 #else /* BR_CROSS_PATH_SUFFIX */
 	ret = snprintf(path, sizeof(path), "%s/usr/bin/%s" BR_CROSS_PATH_SUFFIX, absbasedir, basename);


More information about the buildroot mailing list