On Sunday 25 May 2008, Szabolcs Szakacsits wrote:
>  2. $(MKDIR_P) is replaced with $(mkdir_p). The former requires too 
>     new automake (people do use and patch the build process even on 
>     2.4. kernel environments).

Please consider the following.

Alon.

---

Index: configure.ac
===================================================================
RCS file: /cvsroot/ntfs-3g/ntfs-3g/configure.ac,v
retrieving revision 1.66
diff -u -B -r1.66 configure.ac
--- configure.ac        25 May 2008 01:21:29 -0000      1.66
+++ configure.ac        25 May 2008 05:25:17 -0000
@@ -344,6 +344,11 @@
        docdir="\$(datarootdir)/doc/\$(PACKAGE_NAME)"
        AC_SUBST([docdir])
 fi
+# workaround for <automake-1.10
+if test -z "${MKDIR_P}"; then
+       MKDIR_P="\$(mkdir_p)"
+       AC_SUBST([MKDIR_P])
+fi
 
 # generate files
 AC_CONFIG_FILES([
Index: src/Makefile.am
===================================================================
RCS file: /cvsroot/ntfs-3g/ntfs-3g/src/Makefile.am,v
retrieving revision 1.13
diff -u -B -r1.13 Makefile.am
--- src/Makefile.am     25 May 2008 01:21:29 -0000      1.13
+++ src/Makefile.am     25 May 2008 05:25:17 -0000
@@ -39,7 +39,7 @@
 
 if ENABLE_MOUNT_HELPER
 install-exec-local:    install-rootbinPROGRAMS
-       $(mkdir_p) "$(DESTDIR)/sbin"
+       $(MKDIR_P) "$(DESTDIR)/sbin"
        $(LN_S) -f "$(rootbindir)/ntfs-3g" "$(DESTDIR)/sbin/mount.ntfs-3g"
 endif

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
ntfs-3g-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ntfs-3g-devel

Reply via email to