From dbb1f6dbdde0173078e474ddf9d35cfe0c311b86 Mon Sep 17 00:00:00 2001 From: Andrew Sobala Date: Sat, 14 Jun 2003 23:58:25 +0000 Subject: [PATCH] Fix Makefile.am brokenness that was causing property pages not to be shown due to incorrectly generated .server files. This makes the property page visible again, which is cool, which will make everyone file bug reports about how bad it is, which is ... less cool. Check bugzilla first. I know. --- vfs-methods/themus/ChangeLog | 4 ++++ vfs-methods/themus/Makefile.am | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/vfs-methods/themus/ChangeLog b/vfs-methods/themus/ChangeLog index 90fa32186..51883ec05 100644 --- a/vfs-methods/themus/ChangeLog +++ b/vfs-methods/themus/ChangeLog @@ -1,3 +1,7 @@ +2003-06-15 Andrew Sobala + + * Makefile.am: fix server.in generation (fixes property page showing) + 2003-06-06 Andrew Sobala * theme-method.c: fix from Rajkumar Sivasamy (originally for control- diff --git a/vfs-methods/themus/Makefile.am b/vfs-methods/themus/Makefile.am index 614e7da4e..0306cbd45 100644 --- a/vfs-methods/themus/Makefile.am +++ b/vfs-methods/themus/Makefile.am @@ -56,8 +56,12 @@ schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) server_in_files = Themus_Component.server.in.in Themus_Properties_View.server.in.in serverdir = $(libdir)/bonobo/servers server_DATA = $(server_in_files:.server.in.in=.server) -$(server_in_files:.server.in.in=.server.in): $(server_in_files) - sed -e "s|\@BONOBODIR\@|$(bonobodir)|" $< > $@ + +Themus_Component.server.in: Themus_Component.server.in.in + sed -e "s|\@BONOBODIR\@|$(bonobodir)|" Themus_Component.server.in.in > Themus_Component.server.in + +Themus_Properties_View.server.in: Themus_Properties_View.server.in.in + sed -e "s|\@BONOBODIR\@|$(bonobodir)|" Themus_Properties_View.server.in.in > Themus_Properties_View.server.in CLEANFILES = Themus_Component.server Themus_Component.server.in Themus_Properties_View.server Themus_Properties_View.server.in