Hi Alon,

Thank you. It was commited unchanged to both the MAIN and the 
PERMISSION_HANDLING_BRANCH.

Jean-Pierre, I tested building PERMISSION_HANDLING_BRANCH before
the commit and it worked fine for me.

Regards,
            Szaka


On Mon, 19 May 2008, Alon Bar-Lev wrote:

> Support making in separate build directory.
> 
> ---
> 
> Index: Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/Makefile.am,v
> retrieving revision 1.2
> diff -u -B -r1.2 Makefile.am
> --- Makefile.am       6 Dec 2007 20:44:01 -0000       1.2
> +++ Makefile.am       19 May 2008 04:55:16 -0000
> @@ -4,20 +4,20 @@
>  EXTRA_DIST = AUTHORS CREDITS COPYING NEWS autogen.sh  
>  
>  MAINTAINERCLEANFILES=\
> -     configure \
> -     Makefile.in \
> -     aclocal.m4 \
> -     compile \
> -     depcomp \
> -     install-sh \
> -     ltmain.sh \
> -     missing \
> -     config.guess \
> -     config.sub \
> -     config.h.in \
> -     config.h.in~ \
> -     INSTALL
> +     $(srcdir)/configure \
> +     $(srcdir)/Makefile.in \
> +     $(srcdir)/aclocal.m4 \
> +     $(srcdir)/compile \
> +     $(srcdir)/depcomp \
> +     $(srcdir)/install-sh \
> +     $(srcdir)/ltmain.sh \
> +     $(srcdir)/missing \
> +     $(srcdir)/config.guess \
> +     $(srcdir)/config.sub \
> +     $(srcdir)/config.h.in \
> +     $(srcdir)/config.h.in~ \
> +     $(srcdir)/INSTALL
>  
> -SUBDIRS= include libfuse-lite libntfs-3g src
> +SUBDIRS = include libfuse-lite libntfs-3g src
>  
>  doc_DATA = README
> Index: include/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/include/Makefile.am,v
> retrieving revision 1.2
> diff -u -B -r1.2 Makefile.am
> --- include/Makefile.am       6 Dec 2007 20:44:02 -0000       1.2
> +++ include/Makefile.am       19 May 2008 04:55:16 -0000
> @@ -1,4 +1,4 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>  
>  SUBDIRS = ntfs-3g fuse-lite
> Index: include/fuse-lite/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/include/fuse-lite/Makefile.am,v
> retrieving revision 1.1
> diff -u -B -r1.1 Makefile.am
> --- include/fuse-lite/Makefile.am     6 Dec 2007 20:44:02 -0000       1.1
> +++ include/fuse-lite/Makefile.am     19 May 2008 04:55:16 -0000
> @@ -1,5 +1,5 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>  
>  noinst_HEADERS =             \
>       fuse.h                  \
> Index: include/ntfs-3g/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/include/ntfs-3g/Makefile.am,v
> retrieving revision 1.4
> diff -u -B -r1.4 Makefile.am
> --- include/ntfs-3g/Makefile.am       6 Dec 2007 20:44:03 -0000       1.4
> +++ include/ntfs-3g/Makefile.am       19 May 2008 04:55:16 -0000
> @@ -1,3 +1,3 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>  
> Index: libfuse-lite/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/libfuse-lite/Makefile.am,v
> retrieving revision 1.5
> diff -u -B -r1.5 Makefile.am
> --- libfuse-lite/Makefile.am  23 Jan 2008 21:32:27 -0000      1.5
> +++ libfuse-lite/Makefile.am  19 May 2008 04:55:16 -0000
> @@ -1,5 +1,5 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>   
>  if FUSE_INTERNAL
>  noinst_LTLIBRARIES = libfuse-lite.la
> Index: libntfs-3g/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/libntfs-3g/Makefile.am,v
> retrieving revision 1.4
> diff -u -B -r1.4 Makefile.am
> --- libntfs-3g/Makefile.am    6 Dec 2007 20:44:10 -0000       1.4
> +++ libntfs-3g/Makefile.am    19 May 2008 04:55:16 -0000
> @@ -1,5 +1,5 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>  
>  if INSTALL_LIBRARY
>  rootlib_LTLIBRARIES=#Create directory
> @@ -14,7 +14,7 @@
>  libntfs_3g_la_LDFLAGS = -version-info $(LIBNTFS_3G_VERSION) -no-undefined
>  
>  if FUSE_INTERNAL
> -libntfs_3g_la_LIBADD  = $(top_srcdir)/libfuse-lite/libfuse-lite.la
> +libntfs_3g_la_LIBADD  = $(top_builddir)/libfuse-lite/libfuse-lite.la
>  endif
>  
>  libntfs_3g_la_SOURCES =      \
> Index: src/Makefile.am
> ===================================================================
> RCS file: /cvsroot/ntfs-3g/ntfs-3g/src/Makefile.am,v
> retrieving revision 1.9
> diff -u -B -r1.9 Makefile.am
> --- src/Makefile.am   3 Feb 2008 16:39:13 -0000       1.9
> +++ src/Makefile.am   19 May 2008 04:55:16 -0000
> @@ -1,5 +1,5 @@
>  
> -MAINTAINERCLEANFILES = Makefile.in
> +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
>  
>  if FUSE_INTERNAL
>  FUSE_CFLAGS = -I$(top_srcdir)/include/fuse-lite
> 
> -------------------------------------------------------------------------
> 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
> 

-- 
NTFS-3G:  http://ntfs-3g.org




-------------------------------------------------------------------------
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