From 663e352617845bd0525e6dbe5f3df81dac723556 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 19 Jul 2010 12:56:39 +0000 Subject: [PATCH] Fix libguestfs-find-requires.sh for new location of hostfiles (RHBZ#615946). --- libguestfs-find-requires.sh | 4 ++-- libguestfs.spec | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libguestfs-find-requires.sh b/libguestfs-find-requires.sh index 2edaaf1..3b34cf9 100755 --- a/libguestfs-find-requires.sh +++ b/libguestfs-find-requires.sh @@ -10,8 +10,8 @@ files=`sed "s/['\"]/\\\&/g"` # Use ordinary find-requires first. echo $files | tr [:blank:] '\n' | $original_find_requires -# Is initramfs.*.supermin.hostfiles included in the list of files? -hostfiles=`echo $files | tr [:blank:] '\n' | grep 'initramfs\..*\.supermin\.hostfiles$'` +# Is supermin.d/hostfiles included in the list of files? +hostfiles=`echo $files | tr [:blank:] '\n' | grep 'supermin\.d/hostfiles$'` if [ -z "$hostfiles" ]; then exit 0 diff --git a/libguestfs.spec b/libguestfs.spec index 3d90b95..a042411 100644 --- a/libguestfs.spec +++ b/libguestfs.spec @@ -42,7 +42,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 Version: 1.5.0 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -704,6 +704,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 19 2010 Richard W.M. Jones - 1:1.5.0-6 +- Fix libguestfs-find-requires.sh for new location of hostfiles (RHBZ#615946). + * Thu Jul 8 2010 Richard W.M. Jones - 1:1.5.0-5 - Include RELEASE-NOTES in devel package.