From 37ba60f2e9f0918df6b4282839dac6b8ecda34e1 Mon Sep 17 00:00:00 2001 From: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com> Date: Tue, 29 Apr 2008 12:16:46 -0400 Subject: [PATCH] Correct syntax error in makefile.am --- sflphone-gtk/src/Makefile.am | 2 +- sflphone-gtk/src/actions.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sflphone-gtk/src/Makefile.am b/sflphone-gtk/src/Makefile.am index bc4e59da1a..c2d74a9752 100644 --- a/sflphone-gtk/src/Makefile.am +++ b/sflphone-gtk/src/Makefile.am @@ -32,7 +32,7 @@ sflphone_gtk_LDADD = $(DEPS_LIBS) -lnotify AM_CPPFLAGS = $(DEPS_CFLAGS) \ -DICONS_DIR=\""$(datadir)/sflphone"\" \ -DICON_DIR=\""$(datadir)/pixmaps"\" \ - -DCODECS_DIR=\""$(libdir)/sflphone/codecs" + -DCODECS_DIR=\""$(libdir)/sflphone/codecs"\" # add symbolic link install-exec-local: diff --git a/sflphone-gtk/src/actions.c b/sflphone-gtk/src/actions.c index 1202369661..29c63022ca 100644 --- a/sflphone-gtk/src/actions.c +++ b/sflphone-gtk/src/actions.c @@ -706,9 +706,9 @@ sflphone_fill_codec_list() } } if( codec_list_get_size() == 0) { - /* - gchar* markup = g_markup_printf_escape(_("<b>Error: No audio codecs found.\n\n</b> SFL audio codecs have to be placed in <i>%s</i> or in the <b>.sflphone</b> directory in your home( <i>%s</i> )") , CODECS_DIR , g_get_home_dir()); - main_window_error_message( markup );*/ + + gchar* markup = g_markup_printf_escaped(_("<b>Error: No audio codecs found.\n\n</b> SFL audio codecs have to be placed in <i>%s</i> or in the <b>.sflphone</b> directory in your home( <i>%s</i> )") , CODECS_DIR , g_get_home_dir()); + main_window_error_message( markup ); dbus_unregister(getpid()); exit(0); } -- GitLab