diff --git a/autospec/config.py b/autospec/config.py index 47c67b1..b9fa05f 100644 --- a/autospec/config.py +++ b/autospec/config.py @@ -125,6 +125,7 @@ pkgconfig_pats = [ simple_pats = [ (r'warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/.*"', "docbook-xml"), (r"gobject-introspection dependency was not found, gir cannot be generated.", "gobject-introspection-dev"), + (r"gobject-introspection dependency was not found, gir cannot be generated.", "glibc-bin"), (r"Cannot find development files for any supported version of libnl", "libnl-dev"), (r"/", "cmake"), (r"\-\- Boost libraries:", "boost-dev"), diff --git a/autospec/specfiles.py b/autospec/specfiles.py index 84aa4eb..0713e03 100644 --- a/autospec/specfiles.py +++ b/autospec/specfiles.py @@ -690,7 +690,7 @@ class Specfile(object): self._write_strip("export CXXFLAGS=\"$CXXFLAGS -m64 -march=haswell\"") self._write_strip("export LDFLAGS=\"$LDFLAGS -m64 -march=haswell\"") self._write_strip("%configure {0} {1} {2} " - " --libdir=/usr/lib64/haswell " + " --libdir=/usr/lib64/haswell --bindir=/usr/bin/haswell " .format(self.disable_static, config.extra_configure, config.extra_configure32))