diff options
author | Andreas Schwab <schwab@suse.de> | 1999-03-20 17:07:46 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-03-20 17:07:46 +0000 |
commit | bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b (patch) | |
tree | 2aafa1012a70b151d8dd39411f477cd01bd63648 | |
parent | d16e36e0dc784d5bdce2f12ca365f5ecc7f76f46 (diff) | |
download | glibc-bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b.tar glibc-bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b.tar.gz glibc-bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b.tar.bz2 glibc-bfe1b528468c65f1ad575bfb2a0aea48dd9ded0b.zip |
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* debug/Makefile (install-bin): Install and build catchsegv only
if build-shared == yes. Reported by jussi@jlaako.pp.fi [PR
libc/965].
1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* debug/Makefile (install-bin): Install and build catchsegv only
if build-shared == yes. Reported by jussi@jlaako.pp.fi [PR
libc/965].
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | debug/Makefile | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,9 @@ +1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de> + + * debug/Makefile (install-bin): Install and build catchsegv only + if build-shared == yes. Reported by jussi@jlaako.pp.fi [PR + libc/965]. + 1999-03-20 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * time/tzfile.c (__tzfile_read): Handle the case where there are diff --git a/debug/Makefile b/debug/Makefile index e9f085c966..9c094c4222 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998 Free Software Foundation, Inc. +# Copyright (C) 1998, 1999 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -40,8 +40,10 @@ include ../Makeconfig distribute += catchsegv.sh ifeq ($(elf),yes) +ifeq ($(build-shared),yes) install-bin = catchsegv endif +endif generated = catchsegv include ../Rules |