~ubuntu-branches/ubuntu/karmic/metacity/karmic

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell, Robert Ancell, Martin Pitt
  • Date: 2009-09-10 20:15:44 UTC
  • mfrom: (1.2.55 upstream)
  • Revision ID: james.westby@ubuntu.com-20090910201544-jixw2jal1d31ywci
Tags: 1:2.27.1-0ubuntu1
[ Robert Ancell ]
* New upstream version (LP: #427195):
  - Unset _NET_SUPPORTING_WM_CHECK when shutting down
  - Add a switch to disable autofullscreen'ing maximized windows without
    decorations
  - Translation updates

[ Martin Pitt ]
* debian/control.in: Update Vcs-Bzr: for updated branch owner
  (~ubuntu-desktop now).

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
PACKAGE = @PACKAGE@
22
22
VERSION = @VERSION@
23
23
 
24
 
SHELL = /bin/sh
 
24
SHELL = @SHELL@
25
25
 
26
26
srcdir = @srcdir@
27
27
top_srcdir = @top_srcdir@
56
56
 
57
57
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
58
58
 
59
 
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)
 
59
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)
60
60
 
61
61
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)
62
62