Gentoo Archives: gentoo-commits

From: "Petteri Räty" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/libbash:master commit in: /
Date: Sun, 03 Apr 2011 13:46:46
Message-Id: 6ceb8c771b482bf217b0218061c9b4ef81f9c9fa.betelgeuse@gentoo
1 commit: 6ceb8c771b482bf217b0218061c9b4ef81f9c9fa
2 Author: Petteri Räty <petsku <AT> petteriraty <DOT> eu>
3 AuthorDate: Sun Apr 3 13:37:53 2011 +0000
4 Commit: Petteri Räty <betelgeuse <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 13:37:53 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/libbash.git;a=commit;h=6ceb8c77
7
8 Add check_JAVA to BUILT_SOURCES
9
10 When using -j8 it could happen that the java sources were not recompiled
11 after changing the grammar file. Now they are listed in BUILT_SOURCES so
12 they get rebuilt before javac testing happens.
13
14 ---
15 Makefile.am | 3 ++-
16 1 files changed, 2 insertions(+), 1 deletions(-)
17
18 diff --git a/Makefile.am b/Makefile.am
19 index 44cdcba..43796c3 100644
20 --- a/Makefile.am
21 +++ b/Makefile.am
22 @@ -104,7 +104,8 @@ GENERATED_WALKER_H = libbashWalker.h
23 BUILT_SOURCES = $(GENERATED_PARSER_C) \
24 $(GENERATED_PARSER_H) \
25 $(GENERATED_WALKER_C) \
26 - $(GENERATED_WALKER_H)
27 + $(GENERATED_WALKER_H) \
28 + $(check_JAVA)
29 CLEANFILES = $(GENERATED_PARSER_C) \
30 $(GENERATED_PARSER_H) \
31 $(GENERATED_WALKER_C) \