about summary refs log tree commit diff
path: root/editor/pnmquant
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pnmquant')
-rwxr-xr-xeditor/pnmquant2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/pnmquant b/editor/pnmquant
index 0e317f30..0b89dd57 100755
--- a/editor/pnmquant
+++ b/editor/pnmquant
@@ -24,7 +24,7 @@ sub tempFile($) {
     # We trust Perl's File::Temp to do a better job of creating the temp
     # file, but it doesn't exist before Perl 5.6.1.
 
-    if (eval { require File::TempX; 1 }) {
+    if (eval { require File::Temp; 1 }) {
         return File::Temp::tempfile("pnmquant_XXXX", 
                                     SUFFIX=>".pnm", 
                                     DIR=>File::Spec->tmpdir(),