Milos Komarcevic wrote:
> I had to open a DOS window, cd to the directory
> where configure lives, and run it from there.
>
> There is still a slight problem with sed outputting
> of the LaTeX configuration file.
>
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg28200.html
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg30488.html
Hi, Milos.
Can you run the DOS equivalent of this Unix command from the command
line:
$ echo "On this date @chk_date@ I created the string" | \
sed 's/@chk_date@/November 20, 2003/g'
On this date November 20, 2003 I created the string
Alternatively, save the string in a file and then run sed over it
$ sed 's/@chk_date@/November 20, 2003/g' <your_file>
Let's see if we can get to the bottom of this.
--
Angus