summaryrefslogtreecommitdiffstats
path: root/fish
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-05-28 13:00:31 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-05-28 13:00:31 +0100
commita1e8cdf2a254c5eddaf525cd7c34e4c937690204 (patch)
tree4a53b93475a9f5ddd2b0159068818a530e21a797 /fish
parent4e444d53cc9497b7cb36ad35fdee825cade72b0f (diff)
downloadlibguestfs-a1e8cdf2a254c5eddaf525cd7c34e4c937690204.tar.gz
libguestfs-a1e8cdf2a254c5eddaf525cd7c34e4c937690204.tar.xz
libguestfs-a1e8cdf2a254c5eddaf525cd7c34e4c937690204.zip
Move the appliance and build scripts into new appliance/ subdirectory.
Diffstat (limited to 'fish')
-rw-r--r--fish/fish.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/fish/fish.c b/fish/fish.c
index 79f77fe9..18d3880d 100644
--- a/fish/fish.c
+++ b/fish/fish.c
@@ -137,9 +137,10 @@ main (int argc, char *argv[])
guestfs_set_autosync (g, 1);
- /* If developing, add . to the path. Note that libtools interferes
- * with this because uninstalled guestfish is a shell script that runs
- * the real program with an absolute path. Detect that too.
+ /* If developing, add ./appliance to the path. Note that libtools
+ * interferes with this because uninstalled guestfish is a shell
+ * script that runs the real program with an absolute path. Detect
+ * that too.
*
* BUT if LIBGUESTFS_PATH environment variable is already set by
* the user, then don't override it.
@@ -147,7 +148,7 @@ main (int argc, char *argv[])
if (getenv ("LIBGUESTFS_PATH") == NULL &&
argv[0] &&
(argv[0][0] != '/' || strstr (argv[0], "/.libs/lt-") != NULL))
- guestfs_set_path (g, ".:" GUESTFS_DEFAULT_PATH);
+ guestfs_set_path (g, "appliance:" GUESTFS_DEFAULT_PATH);
for (;;) {
c = getopt_long (argc, argv, options, long_options, NULL);