diff options
author | Peter Eisentraut | 2011-06-26 17:08:38 +0000 |
---|---|---|
committer | Peter Eisentraut | 2011-06-26 17:08:38 +0000 |
commit | 1b11e239cac545b86886a30fa15ae1f7c2d6e385 (patch) | |
tree | d1a36676a16d0f136208bb1b234eea2034dd13fd /src/bin/scripts | |
parent | 314837ec3b00bb387f1bd601faa9d535fa2dc80b (diff) |
Replace := by = in nls.mk files
It currently doesn't make a difference, but it's inconsistent with
most other usage, and it might interfere with a future patch, so I'll
change it all in a separate commit.
Also, replace tabs with spaces for alignment.
Diffstat (limited to 'src/bin/scripts')
-rw-r--r-- | src/bin/scripts/nls.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/scripts/nls.mk b/src/bin/scripts/nls.mk index 2ae7bfa27e4..38daba7461d 100644 --- a/src/bin/scripts/nls.mk +++ b/src/bin/scripts/nls.mk @@ -1,8 +1,8 @@ # src/bin/scripts/nls.mk -CATALOG_NAME := pgscripts -AVAIL_LANGUAGES := cs de es fr it ja ko pt_BR ro sv ta tr zh_CN zh_TW -GETTEXT_FILES := createdb.c createlang.c createuser.c \ +CATALOG_NAME = pgscripts +AVAIL_LANGUAGES = cs de es fr it ja ko pt_BR ro sv ta tr zh_CN zh_TW +GETTEXT_FILES = createdb.c createlang.c createuser.c \ dropdb.c droplang.c dropuser.c \ clusterdb.c vacuumdb.c reindexdb.c \ common.c -GETTEXT_TRIGGERS:= _ simple_prompt yesno_prompt +GETTEXT_TRIGGERS = _ simple_prompt yesno_prompt |