--- psiconv/trunk/formats/generate_html.sh 2002/05/10 16:02:01 148 +++ psiconv/trunk/formats/generate_html.sh 2002/05/10 16:15:10 149 @@ -1,4 +1,4 @@ -#!/bin/sh +#! /bin/sh if test "$#" -lt 3 ; then echo "Syntax: $0 psiconv_dir output_dir files..." @@ -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 -Thtml3 - $libtool --mode=execute $psiconv $file -o $outputfile -Thtml3 + echo $libtool --mode=execute $psiconv -o $outputfile -Thtml3 $file + $libtool --mode=execute $psiconv -o $outputfile -Thtml3 $file done echo "Going to produce the index..."