summaryrefslogtreecommitdiff
path: root/Makefile.in.in
diff options
context:
space:
mode:
authorRodney Dawes <dobey@gnome.org>2009-04-08 14:22:42 -0400
committerRodney Dawes <dobey@gnome.org>2009-04-08 14:22:42 -0400
commitb50c1421a687997e2335ec8d93fe0e10af980f82 (patch)
tree4268ef1b2bf32c83bf7df667d88dd825dd96918a /Makefile.in.in
parent3167d64b52c2da8773e9133db5f7dc68d0cb5104 (diff)
downloadintltool-b50c1421a687997e2335ec8d93fe0e10af980f82.tar.gz
Use \^ to escape ^ instead of single quotes
Fixes http://bugzilla.gnome.org/show_bug.cgi?id=577133
Diffstat (limited to 'Makefile.in.in')
-rw-r--r--Makefile.in.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in.in b/Makefile.in.in
index c7e8302..402a25f 100644
--- a/Makefile.in.in
+++ b/Makefile.in.in
@@ -56,7 +56,7 @@ ALL_LINGUAS = @ALL_LINGUAS@
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
-USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep '^$$lang$$' $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi)
+USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)