diff options
author | Brahmajit Das <[email protected]> | 2023-06-26 21:37:46 +0530 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-11-13 11:23:00 +0100 |
commit | 264f5aef2def4e22b9c93ffb512e5b240496f461 (patch) | |
tree | 6af6b9c76290167f41097306c6e8e3160885193b /libmate-panel-applet | |
parent | 9f356d5692489b425722e37c46a3dbb012b5d775 (diff) | |
download | mate-panel-264f5aef2def4e22b9c93ffb512e5b240496f461.tar.bz2 mate-panel-264f5aef2def4e22b9c93ffb512e5b240496f461.tar.xz |
libmate-panel-applet/Makefile.am: Fix build with gettext 0.22
With gettext-0.22 we are getting build errors like:
/usr/bin/msgfmt --desktop --keyword Name --keyword Description --template org.mate.panel.TestApplet.mate-panel-applet.desktop.in -d ../po -o org.mate.panel.TestApplet.mate-panel-applet
/usr/bin/msgfmt: no input file should be given if --desktop and -d are specified
Try '/usr/bin/msgfmt --help' for more information.
make[3]: *** [Makefile:1035: org.mate.panel.TestApplet.mate-panel-applet] Error 1
make[3]: *** Waiting for unfinished jobs....
Bug: https://bugs.gentoo.org/908877
Signed-off-by: Brahmajit Das <[email protected]>
Diffstat (limited to 'libmate-panel-applet')
-rw-r--r-- | libmate-panel-applet/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmate-panel-applet/Makefile.am b/libmate-panel-applet/Makefile.am index 196436e9..dbb640b1 100644 --- a/libmate-panel-applet/Makefile.am +++ b/libmate-panel-applet/Makefile.am @@ -95,7 +95,7 @@ appletdir = $(datadir)/mate-panel/applets applet_in_files = org.mate.panel.TestApplet.mate-panel-applet.desktop.in noinst_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) $(noinst_DATA): $(applet_in_files) - $(AM_V_GEN) $(MSGFMT) --desktop --keyword Name --keyword Description --template $< -d $(top_srcdir)/po -o $@ + $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ EXTRA_DIST = \ org.mate.panel.TestApplet.mate-panel-applet.desktop.in \ |