diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-02 12:53:55 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-02 12:53:55 +0000 |
commit | 9ad142bc346d66819e07149e9e9daf442f7144e1 (patch) | |
tree | 989dbdffd12c64d00406bf82adaaddf9c3565592 /audio/csound5 | |
parent | 476910b65949d742dfd4a73fcb41dac53659672a (diff) | |
download | pkgsrc-9ad142bc346d66819e07149e9e9daf442f7144e1.tar.gz |
Fixed the build for unprivileged users.
The SConsignFile() function creates a temporary file whose name is based
on the given argument. Since unprivileged processes cannot create files
in /dev, the argument cannot be /dev/null for them.
Diffstat (limited to 'audio/csound5')
-rw-r--r-- | audio/csound5/distinfo | 4 | ||||
-rw-r--r-- | audio/csound5/patches/patch-ac | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/audio/csound5/distinfo b/audio/csound5/distinfo index 207bd5a6691..3dd1e3c5e81 100644 --- a/audio/csound5/distinfo +++ b/audio/csound5/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.3 2006/10/17 21:32:37 rillig Exp $ +$NetBSD: distinfo,v 1.4 2007/01/02 12:53:55 rillig Exp $ SHA1 (Csound5.01_src.tar.gz) = b387da9b6c24961397e89ddcedd1229cdfebffe7 RMD160 (Csound5.01_src.tar.gz) = 24652f8f650464d886f6d537ae991654f475ad4a Size (Csound5.01_src.tar.gz) = 2031426 bytes -SHA1 (patch-ac) = 0488928265427da9ee292130088ac5a48448ea07 +SHA1 (patch-ac) = 0ece70604a7d71ece78b5af65420a53adc381d3c SHA1 (patch-ad) = 343b5767584cf4ddfbc7664e3234577fe22ff03a SHA1 (patch-ae) = 705d56ce7a03cd10763542a9ec71b393474c0595 SHA1 (patch-af) = 4444b8efe47a401e01718c21197c2b6e19ec548c diff --git a/audio/csound5/patches/patch-ac b/audio/csound5/patches/patch-ac index acabeabb2e2..618e7defafe 100644 --- a/audio/csound5/patches/patch-ac +++ b/audio/csound5/patches/patch-ac @@ -1,7 +1,7 @@ -$NetBSD: patch-ac,v 1.2 2006/05/29 19:44:24 joerg Exp $ +$NetBSD: patch-ac,v 1.3 2007/01/02 12:53:55 rillig Exp $ ---- SConstruct.orig 2006-03-15 15:22:43.000000000 +0000 -+++ SConstruct +--- SConstruct.orig 2006-03-15 16:22:43.000000000 +0100 ++++ SConstruct 2007-01-02 13:32:42.000000000 +0100 @@ -50,6 +50,10 @@ def today(): def getPlatform(): if sys.platform[:5] == 'linux': @@ -25,7 +25,7 @@ $NetBSD: patch-ac,v 1.2 2006/05/29 19:44:24 joerg Exp $ + pythonLinkFlags = [] + pythonLibraryPath = [] + pythonLibs = [] -+ SConsignFile("/dev/null") ++ SConsignFile("unused-consign-file") # Check for prerequisites. # We check only for headers; checking for libs may fail |