blob: 3f444420588824cae4a4430ec7f82b8fe52659d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
if [ -n "${PACKAGE_BUILDING}" ]; then
exit 0
fi
PATH=/bin:/usr/bin:/sbin:/usr/sbin:${PATH}
export PATH
if [ ! -f ${2}/libdata/pkgconfig/libpanelapplet-2.0.pc ]; then
exit 0
fi
echo "================================================================"
echo ""
echo "The GNOME 2.0 package libpanelapplet was detected on the system."
echo "file_menu_applet works only with the GNOME 1.0 panel."
echo ""
echo "================================================================"
false
|