s3 po: Make adding translated files less tedious
authorKai Blin <kai@samba.org>
Thu, 30 Jul 2009 09:53:59 +0000 (11:53 +0200)
committerKai Blin <kai@samba.org>
Thu, 30 Jul 2009 09:53:59 +0000 (11:53 +0200)
source3/po/genmsg

index 92fd71cd7a176894a0d1c8be610602da16a244ec..64df29e1ecb49b7955f4042dfe24c76e5f96c003 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/sh
 # Copyright (C) 2003 TAKAHASHI Motonobu <monyo@samba.org>
+# Copyright (C) 2009 Kai Blin  <kai@samba.org>
 #
 #   This program is free software; you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 #   You should have received a copy of the GNU General Public License
 #   along with this program; if not, see <http://www.gnu.org/licenses/>.
 #
-NET_FILES="../utils/net.c ../utils/net_ads.c ../utils/net_ads_gpo.c"
-NET_FILES="${NET_FILES} ../utils/net_afs.c ../utils/net_cache.c"
-NET_FILES="${NET_FILES} ../utils/net_conf.c ../utils/net_dom.c"
-NET_FILES="${NET_FILES} ../utils/net_eventlog.c ../utils/net_file.c"
-NET_FILES="${NET_FILES} ../utils/net_group.c ../utils/net_groupmap.c"
-NET_FILES="${NET_FILES} ../utils/net_help.c ../utils/net_help_common.c"
+add_basedir_to_filelist() {
+       BASEDIR="$1"
+       shift;
+       FILELIST="$@"
+       FULL_LIST=""
+       for file in ${FILELIST}; do
+               FULL_LIST="${FULL_LIST} $BASEDIR/${file}"
+       done
+       echo ${FULL_LIST}
+}
+
+NET_FILES=`add_basedir_to_filelist ../utils net.c net_ads.c net_ads_gpo.c \
+          net_afs.c net_cache.c net_conf.c net_dom.c net_eventlog.c \
+          net_file.c net_group.c net_groupmap.c net_help.c net_help_common.c`
+
 FILES="../web/swat.c ../web/statuspage.c ../param/loadparm.c ${NET_FILES}"
 LANGS='en ja tr pl fr de it ru'