diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2015-06-02 08:28:18 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-06-17 23:02:27 +0200 |
commit | dad81a3abf5ebfc2a7ea0722edb484f4e37af3ba (patch) | |
tree | d344453f3f0f49b8e7a11225c9cb5d7d6b8b40b6 /package/setools/0002-move-python-check.patch | |
parent | 5ab7bf0bf4952be85ac1e64e62d8831798f0a8ee (diff) | |
download | buildroot-dad81a3abf5ebfc2a7ea0722edb484f4e37af3ba.tar.gz buildroot-dad81a3abf5ebfc2a7ea0722edb484f4e37af3ba.zip |
setools: new package
[Thomas:
- remove HOST_AUTORECONF = YES, since it is implied by AUTORECONF = YES.]
Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com>
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/setools/0002-move-python-check.patch')
-rw-r--r-- | package/setools/0002-move-python-check.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/setools/0002-move-python-check.patch b/package/setools/0002-move-python-check.patch new file mode 100644 index 0000000000..cef2cec996 --- /dev/null +++ b/package/setools/0002-move-python-check.patch @@ -0,0 +1,25 @@ +Correct a build issue that occurs when python is not found +in the path. This check should only be done if swig-python +option is selected. + +Signed-off-by Clayton Shotwell <clshotwe@rockwellcollins.com> + +--- a/configure.ac 2015-05-15 12:28:07.566060349 -0500 ++++ b/configure.ac 2015-05-28 15:07:25.357072800 -0500 +@@ -217,8 +217,6 @@ + do_swigify=yes + fi + +-AM_PATH_PYTHON(2.7) +- + AC_ARG_ENABLE(swig-python, + AC_HELP_STRING([--enable-swig-python], + [build SWIG interfaces for Python]), +@@ -227,6 +225,7 @@ + if test ${do_swigify} = no; then + AC_PROG_SWIG(2.0.0) + fi ++ AM_PATH_PYTHON(2.7) + SWIG_PYTHON + do_swigify_python=yes + do_swigify=yes |