diff options
author | Brian Behlendorf <[email protected]> | 2011-06-16 12:14:33 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-07-01 12:39:25 -0700 |
commit | bd2f5ac97f4265523fb1397d845eabb8647c79e4 (patch) | |
tree | 3f8baae425e947d5f92572040b0acbcc8ebd8d91 /config/tgz.am | |
parent | e2e7aa2df88708cdcae87688a69ba3f5d1cc43ed (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/tgz.am')
-rw-r--r-- | config/tgz.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/tgz.am b/config/tgz.am index 625d7a370..1c13858ff 100644 --- a/config/tgz.am +++ b/config/tgz.am @@ -11,7 +11,7 @@ tgz-modules: tgz-local rpm-modules name=${PACKAGE}-modules; \ version=${ZFS_META_VERSION}-${ZFS_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-tgz $$pkg1 $$pkg2; \ @@ -20,7 +20,7 @@ tgz-modules: tgz-local rpm-modules tgz-utils: tgz-local rpm-utils name=${PACKAGE}; \ version=${ZFS_META_VERSION}-${ZFS_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; \ pkg2=$${name}-devel-$${version}.$${arch}.rpm; \ pkg3=$${name}-test-$${version}.$${arch}.rpm; \ |