File: set-gnome2

package info (click to toggle)
bacula 5.2.6%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,764 kB
  • sloc: ansic: 117,583; cpp: 26,703; sh: 23,703; makefile: 4,117; perl: 3,045; sql: 1,368; lisp: 727; python: 166; awk: 85; xml: 64; sed: 25
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