blob: acda831cfa805f5267207e2bffe3415fc26fc1a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- menu/Makefile.orig Sun Aug 28 21:40:32 2005
+++ menu/Makefile Fri Oct 13 14:43:28 2006
@@ -10,14 +10,14 @@ install:
install gcin-setup.desktop /usr/share/applications; \
install -d /usr/lib/menu; \
install -m 644 $(MENUS) /usr/lib/menu; \
- which update-menus >& /dev/null && update-menus || exit 0; \
+ which update-menus > /dev/null 2>&1 && update-menus || exit 0; \
else \
- install -d $(libdir)/menu; \
- install -m 644 $(MENUS) $(libdir)/menu; \
- install -d $(GCIN_SETUP_DESKTOP_rpm); \
- install -m 644 gcin-setup.desktop $(GCIN_SETUP_DESKTOP_rpm); \
- install -d $(datadir)/applications; \
- install -m 644 gcin-setup.desktop $(datadir)/applications; \
+ install -d $(prefix)/share/applications; \
+ install -m 644 $(MENUS) $(prefix)/share/applications; \
+ echo "install Gnome's control center panel ..."; \
+ install -d $(datadir)/gnome/control-center-2.0/capplets; \
+ install -m 644 gcin-setup.desktop $(datadir)/gnome/control-center-2.0/capplets; \
+ echo "installing Other common wm(ie:xfce4)'s menu panel ..."; \
fi
clean:
rm -f $(MENUS) *~
|