diff options
author | bad <bad@pkgsrc.org> | 1999-04-29 17:03:38 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 1999-04-29 17:03:38 +0000 |
commit | 8d0119c40a934afe8d5513bc6770a5b47659234a (patch) | |
tree | a2a96e80f7f31301b5f67e355a3a064021a55700 /devel | |
parent | 8712f2e873263c5812aa43bf1f3d3ec7e5337531 (diff) | |
download | pkgsrc-8d0119c40a934afe8d5513bc6770a5b47659234a.tar.gz |
Don't pass linker input files and options when the linker isn't run.
From Andreas Gustafsson PR #7453.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/mit-pthreads/patches/patch-bg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/mit-pthreads/patches/patch-bg b/devel/mit-pthreads/patches/patch-bg index 80711eddb1a..5490d97883b 100644 --- a/devel/mit-pthreads/patches/patch-bg +++ b/devel/mit-pthreads/patches/patch-bg @@ -1,7 +1,7 @@ -$NetBSD: patch-bg,v 1.1 1999/02/10 19:18:01 bad Exp $ +$NetBSD: patch-bg,v 1.2 1999/04/29 17:03:38 bad Exp $ --- scripts/pgcc.sh.orig Fri Sep 1 00:43:39 1995 -+++ scripts/pgcc.sh Wed Feb 10 18:51:34 1999 ++++ scripts/pgcc.sh Thu Apr 29 19:00:46 1999 @@ -7,6 +7,7 @@ include_dir='-I$pthreads_root/include' lib_dir='-L$pthreads_root/lib' @@ -15,7 +15,7 @@ $NetBSD: patch-bg,v 1.1 1999/02/10 19:18:01 bad Exp $ case $arg in -nostdinc) include_dir= ;; - -nostdlib | -c) libs= ;; -+ -nostdlib | -c) libs= ldrun= ;; ++ -nostdlib | -c | -E | -M | -S) libs= ldrun= ;; esac done |