summaryrefslogtreecommitdiff
path: root/fml/bin
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 /fml/bin
parent2dae20cc1cbf3edcaaa2eceda9309c9191481851 (diff)
downloadfml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.tar.gz
fml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.tar.bz2
fml8-8c882fa4fe0ed925c12d4eabc6031db9a7278c89.zip
add fmlerror
Diffstat (limited to 'fml/bin')
-rw-r--r--fml/bin/.cvsignore7
-rwxr-xr-xfml/bin/fmlerror.in17
2 files changed, 21 insertions, 3 deletions
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;