Skip to content
Snippets Groups Projects
Commit 37ba60f2 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Correct syntax error in makefile.am

parent 9d217344
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment