From 00c538e35496a652c6a5bd3a9e3ecb2dbc7733a1 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Sun, 18 Jan 2004 22:22:59 +0000 Subject: [PATCH] builddir != srcdir fix. 2004-01-18 Jason Leach * schemas/Makefile.am (install-data-local): builddir != srcdir fix. --- ChangeLog | 4 ++++ schemas/Makefile.am | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9193c34e9..4b761aa2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-18 Jason Leach + + * schemas/Makefile.am (install-data-local): builddir != srcdir fix. + 2004-01-14 Jody Goldberg * configure.in : post release bump diff --git a/schemas/Makefile.am b/schemas/Makefile.am index fdb71f5c9..53f3b6fa7 100644 --- a/schemas/Makefile.am +++ b/schemas/Makefile.am @@ -15,7 +15,7 @@ if GCONF_SCHEMAS_INSTALL install-data-local: if test -z "$(DESTDIR)" ; then \ for p in $(schema_DATA) ; do \ - GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$$p; \ + GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p; \ done \ fi else