blob: f5556e24f16d847451de0aee8b97b0f22d236b20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- Makefile.orig Thu Feb 15 14:40:33 2001
+++ Makefile Mon Feb 26 19:24:22 2001
@@ -1,3 +1 @@
-prefix=$(shell gnome-config --prefix)
-
LN_S=ln -sf
@@ -14,4 +12,4 @@
for I in *.wav */*.wav ; do \
- $(MKINSTALLDIRS) $(prefix)/share/sounds/`dirname $$I`; \
- $(INSTALL_DATA) $$I $(prefix)/share/sounds/$$I; \
+ $(MKINSTALLDIRS) $(PREFIX)/share/gnome/sounds/`dirname $$I`; \
+ $(INSTALL_DATA) $$I $(PREFIX)/share/gnome/sounds/$$I; \
done
@@ -19,3 +17,3 @@
install-default-links:
- $(LN_S) startup3.wav $(prefix)/share/sounds/login.wav
- $(LN_S) shutdown1.wav $(prefix)/share/sounds/logout.wav
+ $(LN_S) startup3.wav $(PREFIX)/share/gnome/sounds/login.wav
+ $(LN_S) shutdown1.wav $(PREFIX)/share/gnome/sounds/logout.wav
|