From 6cb84b6e94f424afb9e25b392148fe679d4c7d51 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 18 Jun 2009 14:27:20 +0100 Subject: [PATCH] Rename guestfs-supermin-helper -> libguestfs-supermin-helper. --- .gitignore | 2 +- appliance/Makefile.am | 6 +++--- .../{guestfs-supermin-helper.in => libguestfs-supermin-helper.in} | 0 configure.ac | 4 ++-- src/guestfs.c | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename appliance/{guestfs-supermin-helper.in => libguestfs-supermin-helper.in} (100%) diff --git a/.gitignore b/.gitignore index 3e5ba21..b99ffbc 100644 --- a/.gitignore +++ b/.gitignore @@ -20,10 +20,10 @@ ChangeLog Makefile.in Makefile aclocal.m4 -appliance/guestfs-supermin-helper appliance/initramfs.*.img appliance/initramfs.*.supermin.hostfiles appliance/kmod.whitelist +appliance/libguestfs-supermin-helper appliance/make.sh appliance/supermin-make.sh appliance/supermin-split.sh diff --git a/appliance/Makefile.am b/appliance/Makefile.am index 2c8a0be..883bda5 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -17,7 +17,7 @@ EXTRA_DIST = \ make.sh update.sh supermin-split.sh supermin-make.sh \ - guestfs-supermin-helper \ + libguestfs-supermin-helper \ kmod.whitelist \ kmod.whitelist.in @@ -38,7 +38,7 @@ fs_DATA = $(APPLIANCE_FILES) APPLIANCE_FILES = $(INITRAMFSIMG) $(VMLINUZ) if SUPERMIN APPLIANCE_FILES += $(SUPERMINIMG) $(SUPERMINFILES) kmod.whitelist -bin_SCRIPTS = guestfs-supermin-helper +bin_SCRIPTS = libguestfs-supermin-helper endif # Don't change these names - they must be the same as in '*.sh' scripts. @@ -92,7 +92,7 @@ endif cd .. && ./config.status appliance/$@ chmod +x $@ -guestfs-supermin-helper: guestfs-supermin-helper.in +libguestfs-supermin-helper: libguestfs-supermin-helper.in cd .. && ./config.status appliance/$@ chmod +x $@ diff --git a/appliance/guestfs-supermin-helper.in b/appliance/libguestfs-supermin-helper.in similarity index 100% rename from appliance/guestfs-supermin-helper.in rename to appliance/libguestfs-supermin-helper.in diff --git a/configure.ac b/configure.ac index 440a2b6..6e76017 100644 --- a/configure.ac +++ b/configure.ac @@ -497,7 +497,7 @@ AC_CONFIG_FILES([Makefile appliance/Makefile appliance/make.sh appliance/update.sh appliance/supermin-split.sh appliance/supermin-make.sh - appliance/guestfs-supermin-helper + appliance/libguestfs-supermin-helper images/Makefile capitests/Makefile regressions/Makefile @@ -513,7 +513,7 @@ AC_CONFIG_FILES([Makefile AC_OUTPUT dnl WTF? -chmod +x appliance/*.sh appliance/guestfs-supermin-helper +chmod +x appliance/*.sh appliance/libguestfs-supermin-helper dnl Produce summary. echo diff --git a/src/guestfs.c b/src/guestfs.c index 20fafc1..0b56253 100644 --- a/src/guestfs.c +++ b/src/guestfs.c @@ -1158,7 +1158,7 @@ build_supermin_appliance (guestfs_h *g, const char *path, snprintf (cmd, sizeof cmd, "PATH='%s':$PATH " - "guestfs-supermin-helper '%s' %s %s", + "libguestfs-supermin-helper '%s' %s %s", path, path, *kernel, *initrd); -- 1.8.3.1