mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
Fix make extra directly after ./configure. Thanks to Yuval for the bug report.
This commit is contained in:
parent
6d265e99ea
commit
8d86fdefec
@ -42,6 +42,10 @@
|
|||||||
Anton)
|
Anton)
|
||||||
- Add information about $EFS on-disk structures to layout.h. (Yuval,
|
- Add information about $EFS on-disk structures to layout.h. (Yuval,
|
||||||
Anton)
|
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.
|
20/07/2005 - 1.11.1 - Fix several ntfsmount bugs.
|
||||||
|
|
||||||
|
@ -19,11 +19,10 @@ libtool: $(LIBTOOL_DEPS)
|
|||||||
strip:
|
strip:
|
||||||
(cd ntfsprogs && $(MAKE) strip) || exit 1;
|
(cd ntfsprogs && $(MAKE) strip) || exit 1;
|
||||||
|
|
||||||
extra: extras
|
|
||||||
|
|
||||||
extras:
|
|
||||||
(cd ntfsprogs && $(MAKE) extras) || exit 1;
|
|
||||||
|
|
||||||
libs:
|
libs:
|
||||||
(cd libntfs && $(MAKE) libs) || exit 1;
|
(cd libntfs && $(MAKE) libs) || exit 1;
|
||||||
|
|
||||||
|
extra: extras
|
||||||
|
|
||||||
|
extras: libs
|
||||||
|
(cd ntfsprogs && $(MAKE) extras) || exit 1;
|
||||||
|
@ -128,6 +128,9 @@ endif
|
|||||||
strip: $(bin_PROGRAMS) $(sbin_PROGRAMS)
|
strip: $(bin_PROGRAMS) $(sbin_PROGRAMS)
|
||||||
$(STRIP) $^
|
$(STRIP) $^
|
||||||
|
|
||||||
|
libs:
|
||||||
|
(cd ../libntfs && $(MAKE) libs) || exit 1;
|
||||||
|
|
||||||
extra: extras
|
extra: extras
|
||||||
|
|
||||||
extras: $(EXTRA_PROGRAMS)
|
extras: libs $(EXTRA_PROGRAMS)
|
||||||
|
Loading…
Reference in New Issue
Block a user