summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-06-23 12:59:18 +0000
committerbde <bde@FreeBSD.org>1996-06-23 12:59:18 +0000
commit54d26451a24c45d286c057456ab019d729dcd3cd (patch)
tree0dfea9a8e1d2c1eb729fc255b830e6cd854ba165 /usr.bin
parent51f800d978e952ef47db576bddb52e4a8105bbce (diff)
downloadFreeBSD-src-54d26451a24c45d286c057456ab019d729dcd3cd.zip
FreeBSD-src-54d26451a24c45d286c057456ab019d729dcd3cd.tar.gz
Made strip failures fatal. This fixes PR 1328.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/xinstall/xinstall.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index 7b031c4..90c1d42 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -40,7 +40,7 @@ static const char copyright[] =
#ifndef lint
/*static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93";*/
static const char rcsid[] =
- "$Id: xinstall.c,v 1.6 1996/04/06 01:50:40 julian Exp $";
+ "$Id: xinstall.c,v 1.7 1996/04/08 10:59:36 joerg Exp $";
#endif /* not lint */
/*-
@@ -560,8 +560,10 @@ strip(to_name)
execl(_PATH_STRIP, "strip", to_name, NULL);
err(EX_OSERR, "exec(" _PATH_STRIP ")");
default:
- if (wait(&status) == -1 || status)
+ if (wait(&status) == -1 || status) {
(void)unlink(to_name);
+ exit(EX_SOFTWARE);
+ }
}
}
OpenPOWER on IntegriCloud