summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2011-07-22 11:02:49 -0400
committerJohn (J5) Palmieri <johnp@redhat.com>2011-08-11 08:34:59 -0400
commit6b9d738d78c6ac45d49f00402c89356887555069 (patch)
tree90bb1fad4a98fc0dab225977ce75fc3d9d4204d5 /configure.ac
parentf0d2ddcf7e61c36f79a9adf8ccc53bf3db9349d3 (diff)
downloadpygobject-6b9d738d78c6ac45d49f00402c89356887555069.tar.gz
move the static bits internal to gi and refactor build files
* the glib module now becomes the gi._glib module * the gobject module now becomes the gi._gobject module * we do this so we can install in parallel with PyGObject 2 https://bugzilla.gnome.org/show_bug.cgi?id=642048
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 3f19ead1..d6832c30 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,7 @@ AC_INIT(pygobject, pygobject_version,
[http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject])
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I .")
AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_SRCDIR([gobject/gobjectmodule.c])
+AC_CONFIG_SRCDIR([gi/gimodule.c])
AC_DEFINE(PYGOBJECT_MAJOR_VERSION, pygobject_major_version, [pygobject major version])
AC_SUBST(PYGOBJECT_MAJOR_VERSION, pygobject_major_version)
@@ -261,8 +261,8 @@ AC_CONFIG_FILES(
gi/Makefile
gi/repository/Makefile
gi/overrides/Makefile
- glib/Makefile
- gobject/Makefile
+ gi/_glib/Makefile
+ gi/_gobject/Makefile
examples/Makefile
tests/Makefile
PKG-INFO)