Browse code

Fix typo in configure error message.

Originally committed as revision 19803 to svn://svn.ffmpeg.org/ffmpeg/trunk

Reimar Döffinger authored on 2009/09/10 08:07:00
Showing 1 changed files
... ...
@@ -1479,7 +1479,7 @@ fi
1479 1479
 tmpfile(){
1480 1480
     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
1481 1481
         (set -C; exec > $tmp) 2>/dev/null ||
1482
-        die "Unable to create temoporary file in $TMPDIR."
1482
+        die "Unable to create temporary file in $TMPDIR."
1483 1483
     append TMPFILES $tmp
1484 1484
     eval $1=$tmp
1485 1485
 }