mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 03:44:13 -04:00
26 lines
572 B
Plaintext
26 lines
572 B
Plaintext
$NetBSD: patch-aj,v 1.2 2015/06/12 08:04:23 tron Exp $
|
|
|
|
* defined(%hash) is deprecated.
|
|
* defined(@array) is deprecated.
|
|
|
|
--- fixpaths.orig 2001-05-10 17:10:49.000000000 +0100
|
|
+++ fixpaths 2015-06-12 09:02:03.000000000 +0100
|
|
@@ -7,7 +7,7 @@
|
|
|
|
$ext="out";
|
|
|
|
-if (!defined(@ARGV)) { die ("$usage"); }
|
|
+if (!@ARGV) { die ("$usage"); }
|
|
|
|
# read in the command line and get some definitions
|
|
while ($_=$ARGV[0], /^-/) {
|
|
@@ -26,7 +26,7 @@
|
|
}
|
|
} # while parsing arguments
|
|
|
|
-if (!defined(%def)) {
|
|
+if (!%def) {
|
|
die ("$0: nothing to do - no substitutions listed!\n");
|
|
}
|
|
|