summaryrefslogtreecommitdiffstats
path: root/fish/fish.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-11-26 21:51:11 +0000
committerRichard W.M. Jones <rjones@redhat.com>2010-11-26 21:51:11 +0000
commit272b754093ef824486993540a893d39be8e7e9f0 (patch)
treecccad46c8446246663050bf7e7b28936d1f8a392 /fish/fish.c
parentb4c853f7d493af1d71f352832fed29eb7e377e8f (diff)
downloadlibguestfs-272b754093ef824486993540a893d39be8e7e9f0.tar.gz
libguestfs-272b754093ef824486993540a893d39be8e7e9f0.tar.xz
libguestfs-272b754093ef824486993540a893d39be8e7e9f0.zip
fish: Don't use external pod2text program.
This removes the dependency from guestfish to the external pod2text program (and hence the final dependency on perl for guestfish). This is done by storing the formatted pod2text output in guestfish as the help text.
Diffstat (limited to 'fish/fish.c')
-rw-r--r--fish/fish.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/fish/fish.c b/fish/fish.c
index c1dbfb4d..50340a35 100644
--- a/fish/fish.c
+++ b/fish/fish.c
@@ -531,24 +531,6 @@ set_up_terminal (void)
have_terminfo = 1;
}
-void
-pod2text (const char *name, const char *shortdesc, const char *str)
-{
- FILE *fp;
-
- fp = popen ("pod2text", "w");
- if (fp == NULL) {
- /* pod2text failed, maybe not found, so let's just print the
- * source instead, since that's better than doing nothing.
- */
- printf ("%s - %s\n\n%s\n", name, shortdesc, str);
- return;
- }
- fprintf (fp, "=head1 NAME\n\n%s - %s\n\n", name, shortdesc);
- fputs (str, fp);
- pclose (fp);
-}
-
static void
prepare_drives (struct drv *drv)
{