Fix bug #456 for 3.0.0 release.
authorTim Potter <tpot@samba.org>
Wed, 24 Sep 2003 01:27:39 +0000 (01:27 +0000)
committerTim Potter <tpot@samba.org>
Wed, 24 Sep 2003 01:27:39 +0000 (01:27 +0000)
More work on SWAT i18n support to appear in later releases.
(This used to be commit c3267749054ade219d214bdaf6c21e4207bd2011)

source3/Makefile.in
source3/script/installmsg.sh [new file with mode: 0644]

index a2c4a360d4654b7ea8e4c57095c7a8a3c85ee86a..0ea2c4411f851cf80134371a8b852ce67cc0bd06 100644 (file)
@@ -1205,7 +1205,10 @@ installscripts: installdirs
 installdat: installdirs
        @$(SHELL) $(srcdir)/script/installdat.sh $(DESTDIR)$(LIBDIR) $(srcdir)
 
-installswat: installdirs
+installmsg: installdirs
+       @$(SHELL) $(srcdir)/script/installmsg.sh $(DESTDIR)$(LIBDIR) $(srcdir)
+
+installswat: installdirs installmsg
        @$(SHELL) $(srcdir)/script/installswat.sh $(DESTDIR)$(SWATDIR) $(srcdir)
 
 installclientlib: installdirs libsmbclient
diff --git a/source3/script/installmsg.sh b/source3/script/installmsg.sh
new file mode 100644 (file)
index 0000000..30ad404
--- /dev/null
@@ -0,0 +1,23 @@
+#!/bin/sh
+# first version (Sept 2003) written by Shiro Yamada <shiro@miraclelinux.com>
+# based on the first verion (March 2002) of installdat.sh written by Herb Lewis
+
+MSGDIR=$1
+SRCDIR=$2/
+
+echo Installing msg files in $MSGDIR
+
+for f in $SRCDIR/po/*.msg; do
+       FNAME=$MSGDIR/`basename $f`
+       echo $FNAME
+       cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges?
+       chmod 0644 $FNAME
+done
+
+cat << EOF
+======================================================================
+The msg files have been installed. 
+======================================================================
+EOF
+
+exit 0