summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--os2/os2ish.h1
-rw-r--r--pod/perlxstut.pod2
2 files changed, 2 insertions, 1 deletions
diff --git a/os2/os2ish.h b/os2/os2ish.h
index cf945f36d3..b2e1f66c78 100644
--- a/os2/os2ish.h
+++ b/os2/os2ish.h
@@ -98,6 +98,7 @@ char *my_tmpnam (char *);
#define tmpfile my_tmpfile
#define tmpnam my_tmpnam
+#define isatty _isterm
/*
* fwrite1() should be a routine with the same calling sequence as fwrite(),
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod
index 501a34845e..7371cb677d 100644
--- a/pod/perlxstut.pod
+++ b/pod/perlxstut.pod
@@ -491,7 +491,7 @@ And finally create a file Makefile.PL that looks like this:
$Verbose = 1;
WriteMakefile(
'NAME' => 'Mytest2::mylib',
- 'clean' => {'FILES' => 'libmylib.a'},
+ 'clean' => {'FILES' => 'libmylib$(LIB_EXT)'},
);