diff options
author | Ted Gould <ted@gould.cx> | 2009-12-11 20:29:28 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-11 20:29:28 -0600 |
commit | a3a42b9358ebb5c005ecd5b375340ff8daba1f3d (patch) | |
tree | fb6e1bcc2a9f998149998d9bf26e017387f0faad /python | |
parent | a602f4287ef14e95cbaea78c8c676c247a6226fe (diff) | |
download | libayatana-appindicator-a3a42b9358ebb5c005ecd5b375340ff8daba1f3d.tar.gz libayatana-appindicator-a3a42b9358ebb5c005ecd5b375340ff8daba1f3d.tar.bz2 libayatana-appindicator-a3a42b9358ebb5c005ecd5b375340ff8daba1f3d.zip |
Fixing the build system to link everything all happy like.
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/Makefile.am b/python/Makefile.am index 6d19723..0b606db 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -3,6 +3,7 @@ defs_DATA = appindicator.defs #CFLAGS = -Wall -Werror INCLUDES = \ + -I$(top_srcdir)/src \ -DG_LOG_DOMAIN=\"appindicator-python\" \ -DDATADIR=\"$(datadir)\" \ -DLIBDIR=\"$(libdir)\" \ @@ -19,7 +20,7 @@ appindicatordir = $(pkgpyexecdir)/appindicator appindicator_LTLIBRARIES = _appindicator.la _appindicator_la_LDFLAGS = -module -avoid-version -export-symbols-regex init_appindicator -lpyglib-2.0-python2.6 -_appindicator_la_LIBADD = $(APPINDICATOR_PYTHON_LIBS) +_appindicator_la_LIBADD = $(APPINDICATOR_PYTHON_LIBS) -L$(top_builddir)/src/.libs -lappindicator _appindicator_la_SOURCES = appindicatormodule.c nodist__appindicator_la_SOURCES = appindicator.c |