summaryrefslogtreecommitdiffstats
path: root/fuse/guestmount.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-04-16 07:28:47 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-04-16 08:32:48 +0100
commit33a2c184e12c0bdbf061a9f36c87d76c28444712 (patch)
tree0069de7c4662ef6c064d48183fa7baf4350fd3c3 /fuse/guestmount.c
parent5790f5bfafb12cc2ed9365461bf66e0fdfde7150 (diff)
downloadlibguestfs-33a2c184e12c0bdbf061a9f36c87d76c28444712.tar.gz
libguestfs-33a2c184e12c0bdbf061a9f36c87d76c28444712.tar.xz
libguestfs-33a2c184e12c0bdbf061a9f36c87d76c28444712.zip
Remove local LIBGUESTFS_PATH detection from guestfish and guestmount.
Remove the hack that let you run ./fish/guestfish or ./fuse/guestmount. You now have to do: ./run ./fish/guestfish or ./run ./fuse/guestmount to run these programs without installing.
Diffstat (limited to 'fuse/guestmount.c')
-rw-r--r--fuse/guestmount.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/fuse/guestmount.c b/fuse/guestmount.c
index 8d483b33..1e3b5dbe 100644
--- a/fuse/guestmount.c
+++ b/fuse/guestmount.c
@@ -1034,19 +1034,6 @@ main (int argc, char *argv[])
*/
ADD_FUSE_ARG ("-s");
- /* 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.
- */
- if (getenv ("LIBGUESTFS_PATH") == NULL &&
- argv[0] &&
- (argv[0][0] != '/' || strstr (argv[0], "/.libs/lt-") != NULL))
- guestfs_set_path (g, "appliance:" GUESTFS_DEFAULT_PATH);
-
for (;;) {
c = getopt_long (argc, argv, options, long_options, &option_index);
if (c == -1) break;