Last-updated: 2010-04-04
Index: git/Makefile
===================================================================
---- git.orig/Makefile 2014-04-20 08:52:12.397361252 +0200
-+++ git/Makefile 2014-04-20 08:53:32.416679945 +0200
+--- git.orig/Makefile
++++ git/Makefile
@@ -19,6 +19,7 @@
#
HAVE_LINUX_ATTR = 1
HAVE_LINUX_CHROOT = 1
HAVE_LINUX_LOSETUP = 1
-@@ -26,6 +27,16 @@
+@@ -26,6 +27,16 @@ HAVE_LINUX_PIVOT = 1
HAVE_LINUX_MOUNT = 1
HAVE_BSD_MOUNT = 0
MOUNT_TYPE = '"ext3"'
Index: git/cmds.c
===================================================================
---- git.orig/cmds.c 2014-04-20 08:52:12.397361252 +0200
-+++ git/cmds.c 2014-04-20 08:52:12.397361252 +0200
+--- git.orig/cmds.c
++++ git/cmds.c
@@ -19,6 +19,10 @@
#if HAVE_LINUX_MOUNT
#endif
/* Need to tell loop.h what the actual dev_t type is. */
+Index: git/sash.c
+===================================================================
+--- git.orig/sash.c
++++ git/sash.c
+@@ -107,7 +107,7 @@ static const CommandEntry commandEntryTa
+ "srcName ... destName"
+ },
+
+-#ifdef HAVE_LINUX_CHROOT
++#if HAVE_LINUX_CHROOT
+ {
+ "-chroot", do_chroot, 2, 2,
+ "change root file system",
+@@ -189,7 +189,7 @@ static const CommandEntry commandEntryTa
+ "[-sig] pid ..."
+ },
+
+-#ifdef HAVE_LINUX_LOSETUP
++#if HAVE_LINUX_LOSETUP
+ {
+ "-losetup", do_losetup, 3, 3,
+ "Associate a loopback device with a file",
+@@ -253,7 +253,7 @@ static const CommandEntry commandEntryTa
+ "srcName ... destName"
+ },
+
+-#ifdef HAVE_LINUX_PIVOT
++#if HAVE_LINUX_PIVOT
+ {
+ "-pivot_root", do_pivot_root, 3, 3,
+ "pivot the root file system",