summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-03-12 19:56:57 +0100
committerJürg Billeter <j@bitron.ch>2010-03-12 20:00:40 +0100
commitb8589d581096529f518090534e302add8662ff6a (patch)
tree0c0d4299f5ef9c2d7c83840d15079dc35c5626ac
parent67e44ed8b41fd9e95d17d2c6f4e54a95101f828c (diff)
downloadvala-b8589d581096529f518090534e302add8662ff6a.tar.gz
build: Use separate directory for auxiliary build tools
-rw-r--r--Makefile.am4
-rwxr-xr-xbuild-aux/gitlog-to-changelog (renamed from gitlog-to-changelog)0
-rw-r--r--configure.ac1
3 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 961545318..2f10aa915 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -66,7 +66,7 @@ gen_start_date = 2009-02-25
.PHONY: gen-ChangeLog
gen-ChangeLog:
if test -d .git; then \
- $(top_srcdir)/gitlog-to-changelog \
+ $(top_srcdir)/build-aux/gitlog-to-changelog \
--since=$(gen_start_date) > $(distdir)/cl-t; \
rm -f $(distdir)/ChangeLog; \
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
@@ -75,8 +75,8 @@ gen-ChangeLog:
EXTRA_DIST = \
ChangeLog.pre-0-4 \
ChangeLog.pre-0-5-7 \
- gitlog-to-changelog \
MAINTAINERS \
vala-1.0.pc.in \
+ build-aux/gitlog-to-changelog \
$(NULL)
diff --git a/gitlog-to-changelog b/build-aux/gitlog-to-changelog
index 0a94b9e8b..0a94b9e8b 100755
--- a/gitlog-to-changelog
+++ b/build-aux/gitlog-to-changelog
diff --git a/configure.ac b/configure.ac
index d25df4337..4001e04a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,6 @@
AC_INIT([vala], [0.7.11], [j@bitron.ch], [vala])
AC_CONFIG_SRCDIR([Makefile.am])
+AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([dist-bzip2])