blob: f503576c9f07e5e15d3c1b9bc8c6a9e5493e8fe6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- sounds/Makefile.orig Wed Feb 24 22:19:09 1999
+++ sounds/Makefile Sat Mar 6 15:20:39 1999
@@ -6,10 +6,10 @@
install-files:
for I in $(shell find . -name '*.wav'); do \
- install -d $(prefix)/share/sounds/`dirname $$I`; \
- install -m444 $$I $(prefix)/share/sounds/$$I; \
+ mkdir -p $(prefix)/share/gnome/sounds/`dirname $$I`; \
+ ${INSTALL_DATA} $$I $(prefix)/share/gnome/sounds/$$I; \
done
install-default-links:
- ln -sf startup3.wav $(prefix)/share/sounds/login.wav
- ln -sf shutdown1.wav $(prefix)/share/sounds/logout.wav
+ ln -sf startup3.wav $(prefix)/share/gnome/sounds/startup.wav
+ ln -sf shutdown1.wav $(prefix)/share/gnome/sounds/logout.wav
|