--- psiconv/trunk/formats/generate_rtf.sh 2002/05/10 16:02:01 148 +++ psiconv/trunk/formats/generate_rtf.sh 2002/05/10 16:15:10 149 @@ -1,4 +1,4 @@ -#!/bin/sh +#! /bin/sh echo "Generating rtf docs..." @@ -13,6 +13,6 @@ for file in "$@"; do echo "Going to process $file..." outputfile=$outputdir/`basename $file|sed s,'.psi$','.rtf',` - echo $libtool --mode=execute $psiconv $file -o $outputfile -Trtf - $libtool --mode=execute $psiconv $file -o $outputfile -Trtf + echo $libtool --mode=execute $psiconv -o $outputfile -Trtf $file + $libtool --mode=execute $psiconv -o $outputfile -Trtf $file done