Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23285
Modified Files:
ChangeLog configure.ac ntfsprogs.spec.in
Log Message:
Move mount.ntfs-fuse and mkfs.ntfs to be symlinks instead of
hardlinks and move both to /sbin rather than prefix/sbin. Note we
still obey $destdir so building packages works as well as installing
into alternate chroot / other system still works.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -p -r1.294 -r1.295
--- ChangeLog 7 Oct 2005 16:00:42 -0000 1.294
+++ ChangeLog 7 Oct 2005 23:01:23 -0000 1.295
@@ -1,7 +1,11 @@
-xx/xx/2005 - 1.12.1-WIP
+08/10/2005 - 1.12.1 - Minor fix to location of mount.ntfs-fuse and mkfs.ntfs.
- Fix hardcoded location for uninstalling mount.ntfs-fuse hardlink to
match the relocatable location for installing it. (Anton, Szaka)
+ - Move mount.ntfs-fuse and mkfs.ntfs to be symlinks instead of
+ hardlinks and move both to /sbin rather than prefix/sbin. Note we
+ still obey $destdir so building packages works as well as installing
+ into alternate chroot / other system still works.
07/10/2005 - 1.12.0 - Lots of fixes and enhancements!
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -p -r1.80 -r1.81
--- configure.ac 7 Oct 2005 16:00:42 -0000 1.80
+++ configure.ac 7 Oct 2005 23:01:23 -0000 1.81
@@ -22,7 +22,7 @@
#
AC_PREREQ(2.59)
-AC_INIT([ntfsprogs],[1.12.1-WIP],[lin...@li...])
+AC_INIT([ntfsprogs],[1.12.1],[lin...@li...])
#
# Before making a release, the LTVERSION string should be modified.
@@ -155,7 +155,7 @@ esac
AC_PROG_CC
AC_PROG_GCC_TRADITIONAL
AC_PROG_INSTALL
-AC_PATH_PROG(LN, ln, ln)
+AC_PATH_PROG(RM, rm, rm)
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
Index: ntfsprogs.spec.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs.spec.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -r1.17 -r1.18
--- ntfsprogs.spec.in 7 Oct 2005 15:18:47 -0000 1.17
+++ ntfsprogs.spec.in 7 Oct 2005 23:01:23 -0000 1.18
@@ -88,8 +88,8 @@ rm -rf "$RPM_BUILD_ROOT"
%defattr(-,root,root)
%doc AUTHORS COPYING CREDITS ChangeLog INSTALL NEWS README TODO.include TODO.libntfs TODO.ntfsprogs doc/CodingStyle doc/attribute_definitions doc/attributes.txt doc/compression.txt doc/tunable_settings doc/template.c doc/template.h doc/system_files.txt doc/system_security_descriptors.txt
%{bindir}/ntfs[^m][^o]*
-%{sbindir}/mk*
-%{sbindir}/ntfs*
+%{sbindir}/*
+/sbin/mkfs.ntfs
%{mandir}/man8/mkntfs.8*
%{mandir}/man8/mkfs.ntfs.8*
%{mandir}/man8/ntfs[^m][^o]*.8*
@@ -106,6 +106,7 @@ rm -rf "$RPM_BUILD_ROOT"
%{bindir}/ntfsmount*
/sbin/mount.ntfs-fuse
%{mandir}/man8/ntfsmount.8*
+%{mandir}/man8/mount.ntfs-fuse.8*
%files devel
%defattr(-,root,root)
|