Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit58b4f36

Browse files
committed
Fix for make unportability
88dad06 contains a make $(shell)construct that apparently confuses older GNU make versions (possiblybecause of the # inside the shell command?). This construct, whichwould allow # comments inside LINGUAS files, was adapted from gettextrecommendations, but we don't actually need that functionality, sosidestep this whole issue by just using plain "cat".In passing, make this code work with vpath.
1 parent88dad06 commit58b4f36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/nls-global.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# existence checked by Makefile.global; otherwise we won't get here
3030
include$(srcdir)/nls.mk
3131

32-
AVAIL_LANGUAGES :=$(shellsed -e "/^#/d" -e "s/#.*//"po/LINGUAS)
32+
AVAIL_LANGUAGES :=$(shellcat$(srcdir)/po/LINGUAS)
3333

3434
# If user specified the languages he wants in --enable-nls=LANGUAGES,
3535
# filter out the rest. Else use all available ones.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp