diff options
author | Ryan Lortie <desrt@desrt.ca> | 2010-07-22 16:58:55 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2010-07-24 10:24:05 -0400 |
commit | 2992fc3d0aee195d8fda600ca0468c6ee91d4f4e (patch) | |
tree | cd23ab8e103a26efd4c94132ccbe49f5f86ed735 /editor | |
parent | 13e610927e0b2b13ecb1cdb63e4e6441b226dffa (diff) | |
download | dconf-2992fc3d0aee195d8fda600ca0468c6ee91d4f4e.tar.gz |
Get rid of libtool
You need to type 'make clean' before trying to rebuild dconf after this
update (in fact, 'git clean' may be appropriate to clean out all the
extra files that libtool leaves around).
It's quite likely that this completely breaks dconf builds on non-ELF
platforms (and maybe some ELF ones). Please report any problems to
bugzilla. I'm very happy to accept patches to fix portability (via
./configure-time checks).
Diffstat (limited to 'editor')
-rw-r--r-- | editor/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/Makefile.am b/editor/Makefile.am index 7e29429..3a0e744 100644 --- a/editor/Makefile.am +++ b/editor/Makefile.am @@ -2,5 +2,5 @@ bin_PROGRAMS = dconf-editor AM_CFLAGS = $(gtk_CFLAGS) $(gee_CFLAGS) $(libxml_CFLAGS) -I$(top_srcdir)/common -I$(top_srcdir)/client AM_VALAFLAGS = --vapidir ../client --pkg gee-1.0 --pkg gtk+-2.0 --pkg libxml-2.0 --pkg dconf -dconf_editor_LDADD = ../client/libdconf.la $(gtk_LIBS) $(gee_LIBS) $(libxml_LIBS) +dconf_editor_LDADD = ../client/libdconf.so.0 $(gtk_LIBS) $(gee_LIBS) $(libxml_LIBS) dconf_editor_SOURCES = dconf-editor.vala dconf-model.vala dconf-schema.vala dconf-view.vala |