File: set-gnome2

package info (click to toggle)
bacula 1.36.2-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 21,520 kB
  • ctags: 8,940
  • sloc: ansic: 71,494; sh: 10,960; cpp: 7,331; makefile: 2,976; perl: 565; sql: 159; sed: 100; awk: 8; xml: 7
file content (16 lines) | stat: -rwxr-xr-x 326 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# Simple script to set the Gnome package level
#   to Gnome 2.0
#
MUID=`/usr/bin/id -u`
if [ $MUID != 0 ] ; then
   echo " "
   echo "You must be root to run this script."
   echo " "
   exit 1
fi
cd /usr/lib/pkgconfig
if test -f libgnomeui-2.0.pc.orig ; then
   cp -fp libgnomeui-2.0.pc.orig libgnomeui-2.0.pc
fi