Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6434
Modified Files:
ChangeLog Makefile.am
Log Message:
Fix make extra directly after ./configure. Thanks to Yuval for the bug report.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -p -r1.264 -r1.265
--- ChangeLog 4 Aug 2005 12:22:28 -0000 1.264
+++ ChangeLog 4 Aug 2005 13:12:41 -0000 1.265
@@ -42,6 +42,10 @@
Anton)
- Add information about $EFS on-disk structures to layout.h. (Yuval,
Anton)
+ - Fix build so that make extra directly after ./configure works.
+ Thanks to Yuval for the bug report. (Anton)
+ - Add ./configure option --enable-crypto and if enabled detect whether
+ libgcrypt is present or not. (Anton)
20/07/2005 - 1.11.1 - Fix several ntfsmount bugs.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -p -r1.14 -r1.15
--- Makefile.am 30 Jul 2005 17:00:01 -0000 1.14
+++ Makefile.am 4 Aug 2005 13:12:41 -0000 1.15
@@ -19,11 +19,10 @@ libtool: $(LIBTOOL_DEPS)
strip:
(cd ntfsprogs && $(MAKE) strip) || exit 1;
-extra: extras
-
-extras:
- (cd ntfsprogs && $(MAKE) extras) || exit 1;
-
libs:
(cd libntfs && $(MAKE) libs) || exit 1;
+extra: extras
+
+extras: libs
+ (cd ntfsprogs && $(MAKE) extras) || exit 1;
|