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.
This commit is contained in:
parent
a7d0a26d9a
commit
dbb1f6dbdd
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-06-15 Andrew Sobala <aes@gnome.org>
|
||||||
|
|
||||||
|
* Makefile.am: fix server.in generation (fixes property page showing)
|
||||||
|
|
||||||
2003-06-06 Andrew Sobala <aes@gnome.org>
|
2003-06-06 Andrew Sobala <aes@gnome.org>
|
||||||
|
|
||||||
* theme-method.c: fix from Rajkumar Sivasamy (originally for control-
|
* theme-method.c: fix from Rajkumar Sivasamy (originally for control-
|
||||||
|
|
|
@ -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
|
server_in_files = Themus_Component.server.in.in Themus_Properties_View.server.in.in
|
||||||
serverdir = $(libdir)/bonobo/servers
|
serverdir = $(libdir)/bonobo/servers
|
||||||
server_DATA = $(server_in_files:.server.in.in=.server)
|
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
|
CLEANFILES = Themus_Component.server Themus_Component.server.in Themus_Properties_View.server Themus_Properties_View.server.in
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue