aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorOlivier Blin <olivier.blin@softathome.com>2012-07-02 18:50:56 +0200
committerMiklos Szeredi <mszeredi@suse.cz>2012-07-04 12:19:29 +0200
commita6a8bcbeefd6c9e9cf1c6c6f5e8224aff2beb51b (patch)
tree3bf1cd6bdb9498b573b1ad9cef100962ab8f9cc4 /ChangeLog
parentfd4a816823133dd66de60b3a017e1f0442486d1f (diff)
downloadandroid_external_fuse-a6a8bcbeefd6c9e9cf1c6c6f5e8224aff2beb51b.tar.gz
android_external_fuse-a6a8bcbeefd6c9e9cf1c6c6f5e8224aff2beb51b.tar.bz2
android_external_fuse-a6a8bcbeefd6c9e9cf1c6c6f5e8224aff2beb51b.zip
Fix build with automake >= 1.12.1
mkdir_p is deprecated since automake 1.12.1 (see automake commit 7a1eb9ff9027929687f12905e131f6fda3fa6d0c). MKDIR_P should be used instead of mkdir_p. This is available since autoconf 2.59d (2006-06-05), by calling AC_PROG_MKDIR_P. The mkdir_p workaround was not working anyway for out-of-tree builds, since the ../mkinstalldirs path would be incorrect.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e58bec4..48e8f43 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
* Fix install of mount.fuse from out-of-tree build. Patch by
Olivier Blin
+ * Fix build with automake >= 1.12.1. Patch by Olivier Blin
+
2012-04-24 Miklos Szeredi <miklos@szeredi.hu>
* Add fallocate operation. Patch by Anatol Pomozov