--- psiconv/trunk/formats/generate_html4.sh 2002/05/10 16:02:01 148 +++ psiconv/trunk/formats/generate_html4.sh 2002/05/10 16:15:10 149 @@ -1,11 +1,11 @@ -#!/bin/sh +#! /bin/sh if test "$#" -lt 3 ; then echo "Syntax: $0 psiconv_dir output_dir files..." exit 1 fi -if ! test -d "$1"/psiconv ; then +if ! test -d "$1"/program/psiconv ; then echo "First parameter should be base psiconv directory!" exit 1 fi @@ -37,8 +37,8 @@ for file in "$@"; do echo "Going to process $file..." outputfile=$tempdir/`basename $file|sed s,'.psi$','.html,'` - echo $libtool --mode=execute $psiconv $file -o $outputfile -Thtml4 - $libtool --mode=execute $psiconv $file -o $outputfile -Thtml4 + echo $libtool --mode=execute $psiconv -o $outputfile -Thtml4 $file + $libtool --mode=execute $psiconv -o $outputfile -Thtml4 $file done echo "Going to produce the index..."