diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-04-15 06:42:54 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-04-15 06:42:54 +0800 |
commit | abfe42213932a77f350228651ea462302bc97987 (patch) | |
tree | 3c349be962fcf16922ac760e58032e6f8ef79cb8 /addressbook/backend/pas | |
parent | 72ae61158dd7039c8f076e29d59d67101e1a4f6f (diff) | |
download | gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar.gz gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar.bz2 gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar.lz gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar.xz gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.tar.zst gsoc2013-evolution-abfe42213932a77f350228651ea462302bc97987.zip |
Fix compilation with builddir != srcdir (again).
svn path=/trunk/; revision=2441
Diffstat (limited to 'addressbook/backend/pas')
-rw-r--r-- | addressbook/backend/pas/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/addressbook/backend/pas/Makefile.am b/addressbook/backend/pas/Makefile.am index dfaf7aae54..c5f8ed302a 100644 --- a/addressbook/backend/pas/Makefile.am +++ b/addressbook/backend/pas/Makefile.am @@ -9,19 +9,20 @@ CORBA_SOURCE = \ addressbook-skels.c idls = \ - ../idl/addressbook.idl + $(srcdir)/../idl/addressbook.idl idl_flags = `$(GNOME_CONFIG) --cflags idl` $(CORBA_SOURCE): $(idls) - $(ORBIT_IDL) ../idl/addressbook.idl $(idl_flags) + $(ORBIT_IDL) $(srcdir)/../idl/addressbook.idl $(idl_flags) INCLUDES = \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -DG_LOG_DOMAIN=\"Wombat\" \ + -I$(builddir) \ -I$(srcdir) -I$(top_srcdir) \ - -I. \ - -I.. \ + -I$(srcdir)/. \ + -I$(srcdir)/.. \ -I$(top_builddir) \ -I$(includedir) \ -I$(top_srcdir)/e-util \ |