summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-01-05 02:21:27 +0000
committerfukachan <fukachan>2003-01-05 02:21:27 +0000
commit8c882fa4fe0ed925c12d4eabc6031db9a7278c89 (patch)
treead91ab80e483382788c69729c30d642d95af4808
parent2dae20cc1cbf3edcaaa2eceda9309c9191481851 (diff)
downloadfml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.tar.gz
fml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.tar.bz2
fml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.zip
add fmlerror
-rwxr-xr-xINSTALL.sh6
-rw-r--r--configure.in3
-rw-r--r--fml/bin/.cvsignore7
-rwxr-xr-xfml/bin/fmlerror.in17
4 files changed, 26 insertions, 7 deletions
diff --git a/INSTALL.sh b/INSTALL.sh
index 08f48a1f..2b03d2e7 100755
--- a/INSTALL.sh
+++ b/INSTALL.sh
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: INSTALL.sh,v 1.61 2002/12/12 04:56:23 fukachan Exp $
+# $FML: INSTALL.sh,v 1.62 2003/01/02 15:42:23 fukachan Exp $
#
# Run this from the top-level fml source directory.
@@ -124,7 +124,7 @@ echo updating $data_dir/$fml_version/
cp -pr fml/share/* $data_dir/$fml_version/
echo updating ${bindir}/
-for prog in fmladdr fmlalias fmldoc fmlthread fmlconf \
+for prog in fmladdr fmlalias fmldoc fmlthread fmlconf fmlerror \
makefml fmlsch fmlhtmlify fmlspool fmlsummary fmlsuper
do
echo updating ${bindir}/$prog
@@ -139,7 +139,7 @@ PROGRAMS="$PROGRAMS fmlthread fmlthread.cgi"
PROGRAMS="$PROGRAMS makefml makefml.cgi menu.cgi"
PROGRAMS="$PROGRAMS fmlsch fmlsch.cgi"
PROGRAMS="$PROGRAMS fmlhtmlify fmlalias fmladdr fmlsummary"
-PROGRAMS="$PROGRAMS fmlspool fmlsuper"
+PROGRAMS="$PROGRAMS fmlspool fmlsuper fmlerror"
#
diff --git a/configure.in b/configure.in
index b7eb6276..480456c4 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
dnl
-dnl $FML: configure.in,v 1.28 2002/12/31 02:23:10 fukachan Exp $
+dnl $FML: configure.in,v 1.29 2003/01/02 15:42:22 fukachan Exp $
dnl
AC_REVISION($Revision$)
@@ -127,6 +127,7 @@ AC_OUTPUT(\
fml/bin/fmlalias \
fml/bin/fmlconf \
fml/bin/fmldoc \
+ fml/bin/fmlerror \
fml/bin/fmlhtmlify \
fml/bin/fmlsch \
fml/bin/fmlsummary \
diff --git a/fml/bin/.cvsignore b/fml/bin/.cvsignore
index ac2d6b30..38a57975 100644
--- a/fml/bin/.cvsignore
+++ b/fml/bin/.cvsignore
@@ -1,11 +1,12 @@
fmladdr
+fmlalias
fmlconf
fmldoc
+fmlerror
fmlhtmlify
fmlsch
-fmlthread
-makefml
fmlspool
-fmlalias
fmlsummary
fmlsuper
+fmlthread
+makefml
diff --git a/fml/bin/fmlerror.in b/fml/bin/fmlerror.in
new file mode 100755
index 00000000..d73a46d5
--- /dev/null
+++ b/fml/bin/fmlerror.in
@@ -0,0 +1,17 @@
+#! @SHELL@
+#
+# Copyright (C) 2003 Ken'ichi Fukamachi
+# All rights reserved. This program is free software; you can
+# redistribute it and/or modify it under the same terms as Perl itself.
+#
+# $FML: fmlerror.in,v 1.1 2002/11/07 10:53:53 fukachan Exp $
+#
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libexec_dir=@libexecdir@/fml
+
+exec $libexec_dir/fmlerror $*
+
+echo 'not reach here'
+exit 0;