diff options
author | sketch <sketch@pkgsrc.org> | 2003-12-23 18:05:57 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2003-12-23 18:05:57 +0000 |
commit | 3290cf623f2398f0fdffde2757b0bcc6241793d0 (patch) | |
tree | 034c59f6b79eb9908e325029e95b125f58e54530 /audio | |
parent | f6b16e9227b46506dfda7c6a51502aab4751bb79 (diff) | |
download | pkgsrc-3290cf623f2398f0fdffde2757b0bcc6241793d0.tar.gz |
Remove the target before attempting to symlink, to work around certain
versions of ln which do not support that operation.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gnome-audio/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/gnome-audio/Makefile b/audio/gnome-audio/Makefile index 3ad2fde57f2..b8323325b94 100644 --- a/audio/gnome-audio/Makefile +++ b/audio/gnome-audio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2003/12/03 02:33:53 xtraeme Exp $ +# $NetBSD: Makefile,v 1.10 2003/12/23 18:05:57 sketch Exp $ # DISTNAME= gnome-audio-2.0.0 @@ -20,6 +20,8 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/sounds/$$dst; \ ${INSTALL_DATA} $$f ${PREFIX}/share/sounds/$$f; \ done + ${RM} ${PREFIX}/share/sounds/login.wav + ${RM} ${PREFIX}/share/sounds/logout.wav ${LN} -fs startup3.wav ${PREFIX}/share/sounds/login.wav ${LN} -fs shutdown1.wav ${PREFIX}/share/sounds/logout.wav |