From ccdb179d24a2d99ce4f3078bfcd2ffee5af60701 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 5 Oct 2015 08:25:17 +0200 Subject: [PATCH] toolchain-wrapper.c: unbreak BR_CROSS_PATH_ABS handling 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 --- toolchain/toolchain-wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/toolchain-wrapper.c b/toolchain/toolchain-wrapper.c index 11f93f0fd5..632696c625 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); -- 2.30.2