summaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/Makefile.am4
-rw-r--r--src/cli/report.cpp3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am
index bbfaa9d0..3584fd6c 100644
--- a/src/cli/Makefile.am
+++ b/src/cli/Makefile.am
@@ -16,8 +16,8 @@ abrt_cli_CPPFLAGS = \
# $(GTK_CFLAGS)
abrt_cli_LDADD = \
- ../lib/libABRTUtils.la \
- ../lib/libABRTdUtils.la \
+ ../lib/libabrt.la \
+ ../lib/libabrt_dbus.la \
$(GLIB_LIBS)
man_MANS = abrt-cli.1
diff --git a/src/cli/report.cpp b/src/cli/report.cpp
index 1378b6b0..78a38916 100644
--- a/src/cli/report.cpp
+++ b/src/cli/report.cpp
@@ -21,7 +21,6 @@
#include "run-command.h"
#include "dbus.h"
#include "abrtlib.h"
-#include "plugin.h" // LoadPluginSettings
/* Field separator for the crash report file that is edited by user. */
#define FIELD_SEP "%----"
@@ -534,7 +533,7 @@ static void get_reporter_plugin_settings(const vector_string_t& reporters,
{
map_string_t single_plugin_settings;
std::string path = std::string(homedir) + "/.abrt/"
- + it->first + "."PLUGINS_CONF_EXTENSION;
+ + it->first + ".conf";
/* Load plugin config in the home dir. Do not skip lines with empty value (but containing a "key="),
because user may want to override password from /etc/abrt/plugins/*.conf, but he prefers to
enter it every time he reports. */