Tim Rühsen wrote: > $ diff wget.po ../../../po/wget.pot > 3c3 > < # This file is distributed under the same license as the wget package. > --- > > # This file is distributed under the same license as the GNU wget package. > 9c9 > < "Project-Id-Version: wget 1.20.3.13-ee7fe-dirty\n" > --- > > "Project-Id-Version: GNU wget 1.20.3.13-ee7fe-dirty\n"
The determination whether a package is a GNU package or not is a bit unreliable. To fix this, set the PACKAGE_GNU variable in your po/Makevars: # This tells whether or not to prepend "GNU " prefix to the package # name that gets inserted into the header of the $(DOMAIN).pot file. # Possible values are "yes", "no", or empty. If it is empty, try to # detect it automatically by scanning the files in $(top_srcdir) for # "GNU packagename" string. PACKAGE_GNU = yes Bruno