diff options
author | rbuj <[email protected]> | 2021-01-26 11:48:25 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-02 22:44:05 +0100 |
commit | 3f70c0ecafd4f14479c448a4e49f14d292f88dca (patch) | |
tree | 209f635956ef1e0acb845c459460dadca1922db9 | |
parent | 18a34d78737374627f1128be3b66c8ddd95bdb0e (diff) | |
download | mate-calc-3f70c0ecafd4f14479c448a4e49f14d292f88dca.tar.bz2 mate-calc-3f70c0ecafd4f14479c448a4e49f14d292f88dca.tar.xz |
build: Use PACKAGE_URL variable
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | src/math-window.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c1c7203..c2937c1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.62) -AC_INIT([mate-calc], [1.25.0], [http://mate-desktop.org]) +AC_INIT([mate-calc], [1.25.0], [https://github.com/mate-desktop/mate-calc/issues], + [mate-calc], [https://mate-desktop.org]) AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news]) AC_CONFIG_HEADERS(config.h) diff --git a/src/math-window.c b/src/math-window.c index 9dc8f67..be4f02e 100644 --- a/src/math-window.c +++ b/src/math-window.c @@ -376,7 +376,7 @@ static void about_cb(GtkWidget* widget, MathWindow* window) "documenters", documenters, "translator_credits", _("translator-credits"), "wrap-license", TRUE, - "website", "http://mate-desktop.org", + "website", PACKAGE_URL, "icon-name", "accessories-calculator", "logo-icon-name", "accessories-calculator", NULL); |