diff options
author | intrigeri <intrigeri@boum.org> | 2012-01-29 14:11:11 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-01-29 14:36:42 +0100 |
commit | 0a0fbb46baa1fd5e6bb68c9e3f9f0b28dfa17e15 (patch) | |
tree | 4d4a0efde15957398679f175bf5daed6c8be6450 | |
parent | 8a794ac292e8c2c0677ca86c380778eaac8bff6a (diff) | |
download | backupninja-0a0fbb46baa1fd5e6bb68c9e3f9f0b28dfa17e15.tar.gz backupninja-0a0fbb46baa1fd5e6bb68c9e3f9f0b28dfa17e15.tar.bz2 |
Workaround annoying automake sanity check.
Recent versions of automake prevent us from installing lib/* into
lib/backupninja/. Where else are be supposed to install such files anyway?
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/Makefile.am | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -16,6 +16,10 @@ version 1.0 -- UNRELEASED Thanks to Yuval Kogman <nothingmuch@woobling.org> for the patch. mysql: . Don't attempt to dump performance_schema database (Redmine#3741). + build system changes + . Workaround automake sanity check that would prevent us from + installing lib/* into lib/backupninja/. Where else are be supposed + to install such files anyway? version 0.9.10 -- September 23, 2011 backupninja changes diff --git a/lib/Makefile.am b/lib/Makefile.am index 11eba37..9a54736 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,7 @@ -pkglib_SCRIPTS = easydialog parseini tools vserver +my_execbindir = $(pkglibdir) +my_execbin_SCRIPTS = easydialog parseini tools vserver -CLEANFILES = $(pkglib_SCRIPTS) +CLEANFILES = $(my_execbin_SCRIPTS) EXTRA_DIST = easydialog.in parseini.in tools.in vserver.in |