Update build system to use valac -C, patch by Jaap A. Haitsma, fixes bug
authorJuerg Billeter <j@bitron.ch>
Wed, 7 May 2008 20:46:08 +0000 (20:46 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Wed, 7 May 2008 20:46:08 +0000 (20:46 +0000)
2008-05-07  Juerg Billeter  <j@bitron.ch>

* gee/Makefile.am:
* tests/Makefile.am:

Update build system to use valac -C,
patch by Jaap A. Haitsma, fixes bug 531224

svn path=/trunk/; revision=34

ChangeLog
gee/Makefile.am
tests/Makefile.am

index 10d72af..628c77a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-07  Jürg Billeter  <j@bitron.ch>
+
+       * gee/Makefile.am:
+       * tests/Makefile.am:
+
+       Update build system to use valac -C,
+       patch by Jaap A. Haitsma, fixes bug 531224
+
 2008-05-01  Jürg Billeter  <j@bitron.ch>
 
        * configure.ac: Post-release version bump
index b3fe725..ad326b0 100644 (file)
@@ -42,7 +42,7 @@ geeinclude_HEADERS = \
        $(NULL)
 
 gee-1.0.vapi gee.vala.stamp: $(libgee_la_VALASOURCES)
-       $(VALAC) --basedir $(top_srcdir) --library gee-1.0 $^
+       $(VALAC) -C --basedir $(top_srcdir) --library gee-1.0 $^
        touch $@
 
 libgee_la_LIBADD = \
index 624f5e9..18255e1 100644 (file)
@@ -15,7 +15,7 @@ TEST_PROGS += testarraylist
 testarraylist_VALASOURCES = testarraylist.vala
 testarraylist_SOURCES = testarraylist.c testarraylist.h
 $(testarraylist_SOURCES): $(testarraylist_VALASOURCES)
-       $(VALAC) --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
+       $(VALAC) -C --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
        touch $@
 testarraylist_LDADD = $(progs_ldadd)
 EXTRA_DIST += $(testarraylist_VALASOURCES)
@@ -24,7 +24,7 @@ TEST_PROGS += testhashmap
 testhashmap_VALASOURCES = testhashmap.vala
 testhashmap_SOURCES = testhashmap.c testhashmap.h
 $(testhashmap_SOURCES): $(testhashmap_VALASOURCES)
-       $(VALAC) --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
+       $(VALAC) -C --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
        touch $@
 testhashmap_LDADD = $(progs_ldadd)
 EXTRA_DIST += $(testhashmap_VALASOURCES)
@@ -33,7 +33,7 @@ TEST_PROGS += testhashset
 testhashset_VALASOURCES = testhashset.vala
 testhashset_SOURCES = testhashset.c testhashset.h
 $(testhashset_SOURCES): $(testhashset_VALASOURCES)
-       $(VALAC) --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
+       $(VALAC) -C --basedir $(top_srcdir) --vapidir $(top_srcdir)/gee --pkg gee-1.0 $^
        touch $@
 testhashset_LDADD = $(progs_ldadd)
 EXTRA_DIST += $(testhashset_VALASOURCES)