diff options
author | rbuj <[email protected]> | 2021-01-26 12:13:05 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-04 18:49:09 +0100 |
commit | fc41e86d4cc588ba8186cd6fd23b19ff19f33dd5 (patch) | |
tree | 0141847b1913f9f1a90a4cb0471078c0562223ac | |
parent | 601dd52e9d61c6a5e5b1b3821c53d8cb9756190b (diff) | |
download | mate-sensors-applet-fc41e86d4cc588ba8186cd6fd23b19ff19f33dd5.tar.bz2 mate-sensors-applet-fc41e86d4cc588ba8186cd6fd23b19ff19f33dd5.tar.xz |
build: Use PACKAGE_URL variable
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | sensors-applet/about-dialog.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index e0f8b7d..c38fe8c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # ================= initialization =================== # -AC_INIT([MATE Sensors Applet], [1.25.0], [https://mate-desktop.org], -[mate-sensors-applet]) +AC_INIT([mate-sensors-applet], [1.25.0], [https://github.com/mate-desktop/mate-sensors-applet/issues], + [mate-sensors-applet], [https://mate-desktop.org]) AC_CONFIG_SRCDIR([sensors-applet/main.c]) AC_CONFIG_HEADERS([sensors-applet/config.h]) diff --git a/sensors-applet/about-dialog.c b/sensors-applet/about-dialog.c index 2f203d7..c7221c5 100644 --- a/sensors-applet/about-dialog.c +++ b/sensors-applet/about-dialog.c @@ -45,7 +45,7 @@ void about_dialog_open(SensorsApplet *sensors_applet) { /* To translator: Put your name here to show up in the About dialog as the translator */ "translator-credits", _("translator-credits"), "logo-icon-name", SENSORS_APPLET_ICON, - "website", "https://mate-desktop.org", + "website", PACKAGE_URL, NULL); } |