diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-06-18 14:27:20 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-06-18 14:27:20 +0100 |
commit | 6cb84b6e94f424afb9e25b392148fe679d4c7d51 (patch) | |
tree | 92b5a7236cadc8911bafe3160d6b5c69ff0e3cce | |
parent | be4508dbc4542e9f68fc8c539f8b1bf5193c3a2f (diff) | |
download | libguestfs-6cb84b6e94f424afb9e25b392148fe679d4c7d51.tar.gz libguestfs-6cb84b6e94f424afb9e25b392148fe679d4c7d51.tar.xz libguestfs-6cb84b6e94f424afb9e25b392148fe679d4c7d51.zip |
Rename guestfs-supermin-helper -> libguestfs-supermin-helper.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | appliance/Makefile.am | 6 | ||||
-rwxr-xr-x | appliance/libguestfs-supermin-helper.in (renamed from appliance/guestfs-supermin-helper.in) | 0 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/guestfs.c | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -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 2c8a0be7..883bda56 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 index 87fb6882..87fb6882 100755 --- a/appliance/guestfs-supermin-helper.in +++ b/appliance/libguestfs-supermin-helper.in diff --git a/configure.ac b/configure.ac index 440a2b65..6e760171 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 20fafc12..0b562537 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); |