[FFmpeg-cvslog] r10677 - trunk/configure
Ramiro Polla
ramiro
Wed Oct 10 20:24:03 CEST 2007
mru wrote:
> Author: mru
> Date: Sat Oct 6 19:09:30 2007
> New Revision: 10677
>
> Log:
> use pr -n -t instead of non-standard cat -n
>
Is this purely to be standard compliant or did you manage to find a
system that doesn't accept cat -n?
MSYS doesn't have pr.
A hackish workaround can be done creating /bin/pr with this simple script:
#!/bin/sh
args=`echo $* | sed 's/-t //'`
cat -n $args
More information about the ffmpeg-cvslog
mailing list