diff options
author | Johan Dahlin <johan@gnome.org> | 2008-07-14 22:17:34 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-07-14 22:17:34 +0000 |
commit | 9473f3e6975630ecdb301e3cd52904678e13723b (patch) | |
tree | 02a951c5e86fef73f5898f02cd1e58b3e2cadacb /tests | |
parent | c03f8254ad00f5332106d36717063492b284690e (diff) | |
download | pygobject-9473f3e6975630ecdb301e3cd52904678e13723b.tar.gz |
Make sure we can distcheck the gio module properly
2008-07-15 Johan Dahlin <johan@gnome.org>
* tests/Makefile.am:
Make sure we can distcheck the gio module properly
svn path=/trunk/; revision=808
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 6d0c51a0..21fa0575 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -39,12 +39,15 @@ tests = \ testhelper.la: $(testhelper_la_OBJECTS) $(testhelper_la_DEPENDENCIES) $(LINK) -rpath $(pkgpyexecdir) $(testhelper_la_LDFLAGS) $(testhelper_la_OBJECTS) $(testhelper_la_LIBADD) $(LIBS) -check-local: $(top_srcdir)/gobject/__init__.py +check-local: $(top_srcdir)/gobject/__init__.py $(top_srcdir)/gio/__init__.py @if test "$(top_builddir)" != "$(top_srcdir)"; then \ cp $(top_srcdir)/gobject/*.py $(top_builddir)/gobject; \ + cp $(top_srcdir)/gio/*.py $(top_builddir)/gio; \ fi @$(PYTHON) $(srcdir)/runtests.py $(top_builddir) $(top_srcdir) @if test "$(top_builddir)" != "$(top_srcdir)"; then \ rm -f $(top_builddir)/gobject/*.py; \ + rm -f $(top_builddir)/gio/*.py; \ fi @rm -fr $(top_builddir)/gobject/*.pyc + @rm -fr $(top_builddir)/gio/*.pyc |