diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-03-30 17:03:11 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-03-31 15:42:13 +0100 |
commit | b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef (patch) | |
tree | 2c523527cf6d52c719722c2400df1bcbf6bd3699 /df/Makefile.am | |
parent | 4155d20014b24b2203c4dd8b00e2e19450a7e3bb (diff) | |
download | libguestfs-b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef.tar.gz libguestfs-b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef.tar.xz libguestfs-b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef.zip |
Add /etc/libguestfs-tools.conf configuration file.
This allows the default for --ro or --rw to be controlled for the
three tools guestfish, guestmount and virt-rescue.
Diffstat (limited to 'df/Makefile.am')
-rw-r--r-- | df/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/df/Makefile.am b/df/Makefile.am index 2f0eff0e..81c190ff 100644 --- a/df/Makefile.am +++ b/df/Makefile.am @@ -1,5 +1,5 @@ # libguestfs virt-df -# Copyright (C) 2010 Red Hat Inc. +# Copyright (C) 2010-2011 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -28,6 +28,7 @@ CLEANFILES = stamp-virt-df.pod bin_PROGRAMS = virt-df SHARED_SOURCE_FILES = \ + ../fish/config.c \ ../fish/inspect.c \ ../fish/keys.c \ ../fish/options.h \ @@ -48,9 +49,11 @@ virt_df_CFLAGS = \ -I$(srcdir)/../gnulib/lib -I../gnulib/lib \ -DLOCALEBASEDIR=\""$(datadir)/locale"\" \ $(WARN_CFLAGS) $(WERROR_CFLAGS) \ + $(LIBCONFIG_CFLAGS) \ $(LIBVIRT_CFLAGS) virt_df_LDADD = \ + $(LIBCONFIG_LIBS) \ $(top_builddir)/src/libguestfs.la \ ../gnulib/lib/libgnu.la \ $(LIBVIRT_LIBS) \ |