aboutsummaryrefslogtreecommitdiffstats
path: root/config/deb.am
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2011-06-16 11:49:38 -0700
committerBrian Behlendorf <[email protected]>2011-06-16 11:49:38 -0700
commita32661a6c976c1d8100ddd8e60c958ae8db98747 (patch)
tree5f31033079c7cb086be99c1e64b2d606e4344436 /config/deb.am
parent372c2572336468cbf60272aa7e735b7ca0c3807c (diff)
Avoid 'rpm -q' bug for 'make pkg'
RPM version 4.9.0 has been observed to generate extra debug messages in certain cases. These debug messages prevent us from cleanly acquiring the architecture. This is clearly an upstream RPM bug which will get fixed. But until then a safe solution is to pipe the result through 'tail -1' to just grab the architecture bit we care about. Example 'rpm -qp spl-0.6.0-rc4.src.rpm --qf %{arch}' output: Freeing read locks for locker 0x166: 28031/47480843735008 Freeing read locks for locker 0x168: 28031/47480843735008 x86_64
Diffstat (limited to 'config/deb.am')
-rw-r--r--config/deb.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/deb.am b/config/deb.am
index 766655dcf..ce84cfa9c 100644
--- a/config/deb.am
+++ b/config/deb.am
@@ -32,7 +32,7 @@ deb-modules: deb-local rpm-modules
name=${PACKAGE}-modules; \
version=${SPL_META_VERSION}-${SPL_META_RELEASE}; \
release=`echo ${LINUX_VERSION} | $(SED) -e "s/-/_/g"`; \
- arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch}`; \
+ arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
pkg1=$${name}-$${version}_$${release}.$${arch}.rpm; \
pkg2=$${name}-devel-$${version}_$${release}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-deb $$pkg1 $$pkg2; \
@@ -41,7 +41,7 @@ deb-modules: deb-local rpm-modules
deb-utils: deb-local rpm-utils
name=${PACKAGE}; \
version=${SPL_META_VERSION}-${SPL_META_RELEASE}; \
- arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch}`; \
+ arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
pkg1=$${name}-$${version}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-deb $$pkg1; \
$(RM) $$pkg1