diff --git a/src/Makefile.am b/src/Makefile.am index 343ed27..928a759 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -175,7 +175,7 @@ $(dbusconf_DATA): $(dbusconf_in_files) Makefile install-data-hook: if test -w $(DESTDIR)$(prefix)/; then \ - mkdir -p $(DESTDIR)$(localstatedir)/lib/DeviceKit-power; \ + mkdir -p $(DESTDIR)$(localstatedir)/lib/upower; \ fi install-exec-hook: diff --git a/src/up-history.c b/src/up-history.c index a6f981d..19c263b 100644 --- a/src/up-history.c +++ b/src/up-history.c @@ -382,7 +382,7 @@ up_history_get_filename (UpHistory *history, const gchar *type) gchar *filename; filename = g_strdup_printf ("history-%s-%s.dat", type, history->priv->id); - path = g_build_filename (PACKAGE_LOCALSTATE_DIR, "lib", "DeviceKit-power", filename, NULL); + path = g_build_filename (PACKAGE_LOCALSTATE_DIR, "lib", "upower", filename, NULL); g_free (filename); return path; }