diff options
author | minskim <minskim@pkgsrc.org> | 2004-03-22 08:12:28 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-03-22 08:12:28 +0000 |
commit | 0ed46eb566e4c9b0dd597edb06314bf38236384b (patch) | |
tree | ea0253b496657fc310e91b42616ac585a7cf1f0f /audio | |
parent | 74c53f2a92ea74476ab8b6ca1f9f75a485e9f433 (diff) | |
download | pkgsrc-0ed46eb566e4c9b0dd597edb06314bf38236384b.tar.gz |
Use '-f' when removing read-only files. Otherwise user confirmation
may be required.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gnome-audio/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/gnome-audio/Makefile b/audio/gnome-audio/Makefile index ecee80af8c8..7d2063a51f8 100644 --- a/audio/gnome-audio/Makefile +++ b/audio/gnome-audio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2004/03/08 19:40:36 jmmv Exp $ +# $NetBSD: Makefile,v 1.12 2004/03/22 08:12:28 minskim Exp $ # DISTNAME= gnome-audio-2.0.0 @@ -23,8 +23,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 + ${RM} -f ${PREFIX}/share/sounds/login.wav + ${RM} -f ${PREFIX}/share/sounds/logout.wav ${LN} -fs startup3.wav ${PREFIX}/share/sounds/login.wav ${LN} -fs shutdown1.wav ${PREFIX}/share/sounds/logout.wav |