]> sourceware.org Git - lvm2.git/commitdiff
Install lvmdump by default.
authorAlasdair Kergon <agk@redhat.com>
Mon, 20 Nov 2006 20:03:26 +0000 (20:03 +0000)
committerAlasdair Kergon <agk@redhat.com>
Mon, 20 Nov 2006 20:03:26 +0000 (20:03 +0000)
Makefile.in
WHATS_NEW
configure
configure.in
man/Makefile.in
scripts/Makefile.in [new file with mode: 0644]

index 6fb323409d0e34faed182ef51017b2d2a4f359d2..782a1c829b8d03613966818b8db62992cc910324 100644 (file)
@@ -16,7 +16,7 @@ srcdir = @srcdir@
 top_srcdir = @top_srcdir@
 VPATH = @srcdir@
 
-SUBDIRS = doc include man 
+SUBDIRS = doc include man scripts
 
 ifeq ("@INTL@", "yes")
   SUBDIRS += po
index 0c79434f1683827baaf249ee4a45103f99214a28..3bba8cf6f569fb20ad7a453c4fc5baaf5bf51cc8 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.15 - 20th November 2006
 ====================================
+  Install lvmdump by default.
   Fix check for snapshot module when activating snapshot.
   Fix pvremove error path for case when PV is in use.
   Warn if certain duplicate config file entries are seen.
index 982090dcb00679999729946982a299b42f5ceb97..ad8b46c4fb60173329de1050814baf7ada5d917e 100755 (executable)
--- a/configure
+++ b/configure
@@ -11203,7 +11203,7 @@ fi
 
 
 ################################################################################
-                                                                                                                                                                                                                                                ac_config_files="$ac_config_files Makefile make.tmpl daemons/Makefile daemons/clvmd/Makefile dmeventd/Makefile dmeventd/mirror/Makefile doc/Makefile include/Makefile lib/Makefile lib/format1/Makefile lib/format_pool/Makefile lib/locking/Makefile lib/mirror/Makefile lib/snapshot/Makefile man/Makefile po/Makefile tools/Makefile tools/version.h tools/fsadm/Makefile test/mm/Makefile test/device/Makefile test/format1/Makefile test/regex/Makefile test/filters/Makefile"
+                                                                                                                                                                                                                                                          ac_config_files="$ac_config_files Makefile make.tmpl daemons/Makefile daemons/clvmd/Makefile dmeventd/Makefile dmeventd/mirror/Makefile doc/Makefile include/Makefile lib/Makefile lib/format1/Makefile lib/format_pool/Makefile lib/locking/Makefile lib/mirror/Makefile lib/snapshot/Makefile man/Makefile po/Makefile scripts/Makefile tools/Makefile tools/version.h tools/fsadm/Makefile test/mm/Makefile test/device/Makefile test/format1/Makefile test/regex/Makefile test/filters/Makefile"
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
 # tests run on this system so they can be shared between configure
@@ -11745,6 +11745,7 @@ do
   "lib/snapshot/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/snapshot/Makefile" ;;
   "man/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
   "po/Makefile" ) CONFIG_FILES="$CONFIG_FILES po/Makefile" ;;
+  "scripts/Makefile" ) CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
   "tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
   "tools/version.h" ) CONFIG_FILES="$CONFIG_FILES tools/version.h" ;;
   "tools/fsadm/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/fsadm/Makefile" ;;
index 74aa2a9a06ec56de09e55be7f1bad23ec96c3283..c3b310b9c0bb11bff7097eca901f0bedd83628b5 100644 (file)
@@ -637,6 +637,7 @@ lib/mirror/Makefile                                                 \
 lib/snapshot/Makefile                                                  \
 man/Makefile                                                           \
 po/Makefile                                                            \
+scripts/Makefile                                                               \
 tools/Makefile                                                         \
 tools/version.h                                                                \
 tools/fsadm/Makefile                                                   \
index 174dfee5abe2004d590d229a554e4ca9a46a9264..4a61ee3dede140ec0535019cd6bf876a94933c22 100644 (file)
@@ -18,8 +18,8 @@ VPATH = @srcdir@
 
 MAN5=lvm.conf.5
 MAN8=lvchange.8 lvconvert.8 lvcreate.8 lvdisplay.8 lvextend.8 lvm.8 \
-       lvmchange.8 \
-       lvmdiskscan.8 lvreduce.8 lvremove.8 lvrename.8 lvresize.8 lvs.8 \
+       lvmchange.8 lvmdiskscan.8 lvmdump.8 \
+       lvreduce.8 lvremove.8 lvrename.8 lvresize.8 lvs.8 \
        lvscan.8 pvchange.8 pvcreate.8 pvdisplay.8 pvmove.8 pvremove.8 \
        pvresize.8 pvs.8 pvscan.8 vgcfgbackup.8 vgcfgrestore.8 vgchange.8 \
        vgck.8 vgcreate.8 vgconvert.8 vgdisplay.8 vgexport.8 vgextend.8 \
diff --git a/scripts/Makefile.in b/scripts/Makefile.in
new file mode 100644 (file)
index 0000000..01def19
--- /dev/null
@@ -0,0 +1,23 @@
+#
+# Copyright (C) 2006 Red Hat, Inc. All rights reserved.
+#
+# This file is part of the LVM2.
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions
+# of the GNU General Public License v.2.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+
+include $(top_srcdir)/make.tmpl
+
+install:
+       $(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) lvm_dump.sh \
+               $(sbindir)/lvmdump
+
This page took 0.058204 seconds and 5 git commands to generate.