diff options
author | rillig <rillig> | 2006-07-04 22:27:43 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-07-04 22:27:43 +0000 |
commit | c0c5c466fb226c534e629e6605a6c01b05c89dba (patch) | |
tree | c6a31754bd18845f8b3512a625e3941b723340dd | |
parent | dc815dd65131cc00eca08edbeb56edd6268fc290 (diff) | |
download | pkgsrc-c0c5c466fb226c534e629e6605a6c01b05c89dba.tar.gz |
Oops. I had better not removed the leading "@" from a line in the
Makefile. It resulted in some output being re-read by make, which in
turn resulted in damaged shell commands. Thanks to wiz for notifying me.
-rw-r--r-- | devel/nss/distinfo | 4 | ||||
-rw-r--r-- | devel/nss/patches/patch-al | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/nss/distinfo b/devel/nss/distinfo index c4760a8b793..c7aa14cfe0f 100644 --- a/devel/nss/distinfo +++ b/devel/nss/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2006/07/02 12:40:41 rillig Exp $ +$NetBSD: distinfo,v 1.11 2006/07/04 22:27:43 rillig Exp $ SHA1 (nss-3.9.2.tar.gz) = 017b748d92c5f7376bda78915d1b78b260b44133 RMD160 (nss-3.9.2.tar.gz) = c9e41ac596af2e717da76546c3a5dfd37272c195 @@ -14,4 +14,4 @@ SHA1 (patch-ah) = 6c8c335d9ffe4a1dbc83a3b8defe05930d866a40 SHA1 (patch-ai) = a68c262b67af7778024b6db350c044fe8474919e SHA1 (patch-aj) = 7304824888d6e611963eb125535776d07a3dcbbf SHA1 (patch-ak) = d1c8a7ebaf839a9ca7734a885fdfa4e091547cb5 -SHA1 (patch-al) = 3a782b1f3ee4be829cf09d6705db435bad93adfd +SHA1 (patch-al) = 73d068883b149c43f4f23151d4f02422ee70f6a4 diff --git a/devel/nss/patches/patch-al b/devel/nss/patches/patch-al index 75909d3d93c..d8ed93c49dc 100644 --- a/devel/nss/patches/patch-al +++ b/devel/nss/patches/patch-al @@ -1,4 +1,4 @@ -$NetBSD: patch-al,v 1.1 2006/07/02 12:40:41 rillig Exp $ +$NetBSD: patch-al,v 1.2 2006/07/04 22:27:43 rillig Exp $ Since GNU Make 3.81, the backslashes are preserved in the shell commands and need to be filtered out explicitly. @@ -10,7 +10,7 @@ and need to be filtered out explicitly. # Can't use sed because of its 4000-char line length limit, so resort to perl .DEFAULT: - @perl -e ' \ -+ perlcmd=' \ ++ @perlcmd=' \ open(MD, "< $(DEPENDENCIES)"); \ while (<MD>) { \ if (m@ \.*/*$< @) { \ |