From c970c28af17f7e38a1c72ecfed78d14e271588da Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Sun, 13 Apr 2014 10:07:55 -0400 Subject: [PATCH] scons: Fix python-config parsing by adding strip() This patch fixes an issue with the way the python-config path is parsed, as it caused issues on systems where a newline ended up being included in the path. --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index ff36fbccd..a1aad32d4 100755 --- a/SConstruct +++ b/SConstruct @@ -876,7 +876,8 @@ if main['M5_BUILD_CACHE']: # First we check if python2-config exists, else we use python-config python_config = readCommand(['which', 'python2-config'], exception='').strip() if not os.path.exists(python_config): - python_config = readCommand(['which', 'python-config'], exception='') + python_config = readCommand(['which', 'python-config'], + exception='').strip() py_includes = readCommand([python_config, '--includes'], exception='').split() # Strip the -I from the include folders before adding them to the -- 2.30.2