diff options
| author | fukachan <fukachan> | 2002-04-15 10:28:08 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-04-15 10:28:08 +0000 |
| commit | ea68ef75e43460fedc0dec66ebb8425522cd8a77 (patch) | |
| tree | dc3556d869c1e21fec1f276f466ebac70e97565d | |
| parent | 0a253992865579477876d8b91861383db4eb6181 (diff) | |
| download | fml8-ea68ef75e43460fedc0dec66ebb8425522cd8a77.tar.gz fml8-ea68ef75e43460fedc0dec66ebb8425522cd8a77.tar.bz2 fml8-ea68ef75e43460fedc0dec66ebb8425522cd8a77.zip | |
add a new utility: fmlspool to handle spool directory
| -rwxr-xr-x | INSTALL.sh | 5 | ||||
| -rw-r--r-- | configure.in | 3 | ||||
| -rw-r--r-- | fml/bin/.cvsignore | 1 | ||||
| -rwxr-xr-x | fml/bin/fmlspool.in | 17 |
4 files changed, 23 insertions, 3 deletions
@@ -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.44 2002/03/31 12:12:28 fukachan Exp $ +# $FML: INSTALL.sh,v 1.45 2002/04/01 10:08:04 fukachan Exp $ # # Run this from the top-level fml source directory. @@ -90,7 +90,7 @@ echo updating $data_dir/$fml_version/ cp -pr fml/share/* $data_dir/$fml_version/ echo updating ${bindir}/ -for prog in fmldoc fmlthread fmlconf makefml fmlsch fmlhtmlify +for prog in fmldoc fmlthread fmlconf makefml fmlsch fmlhtmlify fmlspool do echo updating ${bindir}/$prog cp fml/bin/$prog ${bindir}/$prog.new @@ -104,6 +104,7 @@ PROGRAMS="$PROGRAMS fmlthread fmlthread.cgi" PROGRAMS="$PROGRAMS makefml makefml.cgi menu.cgi" PROGRAMS="$PROGRAMS fmlsch fmlsch.cgi" PROGRAMS="$PROGRAMS fmlhtmlify" +PROGRAMS="$PROGRAMS fmlspool" # diff --git a/configure.in b/configure.in index d7033c8a..b2cc1028 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl -dnl $FML: configure.in,v 1.14 2002/04/01 05:00:42 fukachan Exp $ +dnl $FML: configure.in,v 1.15 2002/04/01 10:08:04 fukachan Exp $ dnl AC_REVISION($Revision$) @@ -102,6 +102,7 @@ AC_OUTPUT(\ fml/bin/fmlhtmlify \ fml/bin/fmlsch \ fml/bin/fmlthread \ + fml/bin/fmlspool \ fml/bin/makefml \ ) diff --git a/fml/bin/.cvsignore b/fml/bin/.cvsignore index e6bfd1a8..0c83d7c0 100644 --- a/fml/bin/.cvsignore +++ b/fml/bin/.cvsignore @@ -4,3 +4,4 @@ fmlhtmlify fmlsch fmlthread makefml +fmlspool diff --git a/fml/bin/fmlspool.in b/fml/bin/fmlspool.in new file mode 100755 index 00000000..15e70a81 --- /dev/null +++ b/fml/bin/fmlspool.in @@ -0,0 +1,17 @@ +#! @SHELL@ +# +# Copyright (C) 2001 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: fmlspool.in,v 1.3 2002/04/01 23:40:53 fukachan Exp $ +# + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libexec_dir=@libexecdir@/fml + +exec $libexec_dir/fmlspool $* + +echo 'not reach here' +exit 0; |
