diff options
author | simonb <simonb@pkgsrc.org> | 1999-10-13 23:14:51 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 1999-10-13 23:14:51 +0000 |
commit | 84b8c7169cbd1b3225705f8586a6ffcb457e2c8b (patch) | |
tree | 456f566235251c86167d67c592fc95ea43fad35a /misc/siag | |
parent | 95874ac4b04aa5306d23f1743f4f12773a754267 (diff) | |
download | pkgsrc-84b8c7169cbd1b3225705f8586a6ffcb457e2c8b.tar.gz |
Don't kill the entire install if the rmdir ${PREFIX}/doc fails during
post-install - some other package (eg libslang-1.3.8) may have stuff in
that directory already.
Diffstat (limited to 'misc/siag')
-rw-r--r-- | misc/siag/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/siag/Makefile b/misc/siag/Makefile index 591671ed443..cedfdfe1797 100644 --- a/misc/siag/Makefile +++ b/misc/siag/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1999/08/29 21:50:21 jlam Exp $ +# $NetBSD: Makefile,v 1.11 1999/10/13 23:14:51 simonb Exp $ DISTNAME= siag-3.1.20 CATEGORIES= misc textproc math @@ -28,6 +28,6 @@ XAW_TYPE?= 3d post-install: ${MV} ${PREFIX}/doc/siag ${PREFIX}/share/doc/siag - ${RMDIR} ${PREFIX}/doc + -${RMDIR} ${PREFIX}/doc .include "../../mk/bsd.pkg.mk" |