mate-desktop / marco

MATE default window manager
https://mate-desktop.org
GNU General Public License v2.0
195 stars 86 forks source link

Remove the copyright information when printing the version from the command line #664

Closed rbuj closed 3 years ago

rbuj commented 3 years ago

Can you check the value of PACKAGE_STRING in config.h file after running configure?

$ ./autogen.sh --prefix=/usr &> /dev/null && grep PACKAGE_STRING config.h
#define PACKAGE_STRING "marco 1.25.0"

Tested on Fedora:

$ marco --version
marco 1.25.0
rbuj commented 3 years ago

Ok, it's a messon build issue:

$ meson --prefix=/usr builddir && grep PACKAGE_STRING builddir/config.h
#define PACKAGE_STRING "marco-2.0"
rbuj commented 3 years ago

@lukefromdc done

rbuj commented 3 years ago

Test:

$ meson --prefix=/usr builddir
$ cd builddir
$ ninja
$ sudo ninja install
$ marco --version
lukefromdc commented 3 years ago

Any updates on this?