diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-10-26 10:03:50 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-10-27 10:59:45 +0100 |
commit | f1930720d96d4a601f1ff63e6ce50da23b90188c (patch) | |
tree | bc51c8122f98196ae168f9e7c369642907cbf324 /appliance/make.sh.in | |
parent | 99dc2a9702e6c8a2bf9073af4cbf1803417ec3ee (diff) | |
download | libguestfs-f1930720d96d4a601f1ff63e6ce50da23b90188c.tar.gz libguestfs-f1930720d96d4a601f1ff63e6ce50da23b90188c.tar.xz libguestfs-f1930720d96d4a601f1ff63e6ce50da23b90188c.zip |
appliance: Remove repo from appliance filename (RHBZ#638901).
There's no need to have the appliance filename contain the
repository name it was built from, and this change gives
downstream users more freedom to mix and match libraries
and appliances if they want to.
Diffstat (limited to 'appliance/make.sh.in')
-rwxr-xr-x | appliance/make.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appliance/make.sh.in b/appliance/make.sh.in index efd1f463..36bcd6c9 100755 --- a/appliance/make.sh.in +++ b/appliance/make.sh.in @@ -26,8 +26,8 @@ set -x if [ "@DIST@" = "REDHAT" ]; then cd @top_builddir@ # Decide on names for the final output. These have to match Makefile.am. - output=appliance/initramfs.@REPO@.@host_cpu@.img - koutput=appliance/vmlinuz.@REPO@.@host_cpu@ + output=appliance/initramfs.@host_cpu@.img + koutput=appliance/vmlinuz.@host_cpu@ rm -f $output rm -f $koutput |