diff options
author | rbuj <[email protected]> | 2020-06-10 15:44:00 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-06-11 15:43:07 +0200 |
commit | 32ffd47806b70cf22af0db6ee8f1279991286262 (patch) | |
tree | 830e09a3908e06de4af431321cc4dda86cc3ff00 | |
parent | 263fe20913d570e85821a1e56e2f8f153db32d86 (diff) | |
download | mate-sensors-applet-32ffd47806b70cf22af0db6ee8f1279991286262.tar.bz2 mate-sensors-applet-32ffd47806b70cf22af0db6ee8f1279991286262.tar.xz |
build: prevents two consecutive slashes in plugin file path
-rw-r--r-- | lib/Makefile.am | 1 | ||||
-rw-r--r-- | sensors-applet/Makefile.am | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index f99424b..3ce0186 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -4,7 +4,6 @@ AM_CPPFLAGS = -DMATELOCALEDIR=\""$(datadir)/locale/"\" \ -DPIXMAPS_DIR=\""$(datadir)/pixmaps/$(PACKAGE)/"\" \ -DDATADIR=\""$(datadir)"\" \ -DLIBDIR=\""$(libdir)"\" \ - -DSENSORS_APPLET_PLUGIN_DIR=\""$(libdir)/$(PACKAGE)/plugins/"\" \ -DSYSCONFDIR=\""$(sysconfdir)"\" \ -DPREFIX=\""$(prefix)"\" \ -I$(top_srcdir) \ diff --git a/sensors-applet/Makefile.am b/sensors-applet/Makefile.am index 6eacf4e..e28a2b9 100644 --- a/sensors-applet/Makefile.am +++ b/sensors-applet/Makefile.am @@ -8,7 +8,7 @@ AM_CPPFLAGS = -DMATELOCALEDIR=\""$(datadir)/locale/"\" \ -DDATADIR=\""$(datadir)"\" \ -DLIBDIR=\""$(libdir)"\" \ -DUIDIR=\""$(pkgdatadir)/ui"\" \ - -DSENSORS_APPLET_PLUGIN_DIR=\""$(libdir)/$(PACKAGE)/plugins/"\" \ + -DSENSORS_APPLET_PLUGIN_DIR=\""$(libdir)/$(PACKAGE)/plugins"\" \ -DSYSCONFDIR=\""$(sysconfdir)"\" \ -DPREFIX=\""$(prefix)"\" \ -I$(top_srcdir) \ |