summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/libxcrypt/files/fix_cflags_handling.patch
blob: 5448fe0fa690a50aa8dfd76f2d734bf3c3e2a93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
If you pass CFLAGS with a leading space, " " gets passed to popen and convinces
gcc to try and open a file called " ". This results in a confusing error message
like:

x86_64-pokysdk-linux-gcc: error: : No such file or directory

Avoid this by stripping empty elements out of CFLAGS.

Upstream-Status: Submitted [https://github.com/besser82/libxcrypt/pull/126]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

Index: a/build-aux/compute-symver-floor
===================================================================
--- a/build-aux/compute-symver-floor
+++ b/build-aux/compute-symver-floor
@@ -36,6 +36,8 @@ sub preprocessor_check {
         die "C compiler not available\n" unless @CC;
 
         @CFLAGS = sh_split($ENV{CFLAGS} // q{});
+        # Remove empty elements, particularly leading ones which cause issues with popen below
+        @CFLAGS = grep {$_} @CFLAGS;
 
         # We call ensure_C_locale here, not from the main section,
         # because this sub might not get called at all, in which