summaryrefslogtreecommitdiffstats
path: root/util/pl
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-07 22:55:27 +0000
committerUlf Möller <ulf@openssl.org>1999-05-07 22:55:27 +0000
commit7d5d27b9a3edf37e6752a961b0da969b6813fa75 (patch)
tree5f7a6007d694e8e45360b722118f1897484b76dd /util/pl
parent12d7d32f24a3fb1ea804cfeebdbbcb91308150bd (diff)
Generate DLLs with Mingw32.
Diffstat (limited to 'util/pl')
-rw-r--r--util/pl/Mingw32.pl5
-rw-r--r--util/pl/Mingw32f.pl2
2 files changed, 3 insertions, 4 deletions
diff --git a/util/pl/Mingw32.pl b/util/pl/Mingw32.pl
index f99b015aba..a47a961c27 100644
--- a/util/pl/Mingw32.pl
+++ b/util/pl/Mingw32.pl
@@ -1,12 +1,11 @@
#!/usr/local/bin/perl
#
-# unix.pl - the standard unix makefile stuff.
+# Mingw32.pl -- Mingw32 with GNU cp (Mingw32f.pl uses DOS tools)
#
-# Need the Cygwin32 file utilities
$o='/';
$cp='cp';
-$rm='rm';
+$rm='del'; # use 'rm -f' if using GNU file utilities
$mkdir='gmkdir';
# gcc wouldn't accept backslashes in paths
diff --git a/util/pl/Mingw32f.pl b/util/pl/Mingw32f.pl
index d523d70153..8d8ad96f91 100644
--- a/util/pl/Mingw32f.pl
+++ b/util/pl/Mingw32f.pl
@@ -1,6 +1,6 @@
#!/usr/local/bin/perl
#
-# unix.pl - the standard unix makefile stuff.
+# Mingw32f.pl -- copy files; Mingw32.pl is needed to do the compiling.
#
$o='\\';