File: set-gnome1.4

package info (click to toggle)
bacula 5.0.2-2.2%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 22,688 kB
  • ctags: 15,071
  • sloc: ansic: 109,509; cpp: 24,105; sh: 21,958; makefile: 4,010; perl: 3,083; sql: 1,366; lisp: 479; python: 166; xml: 64; sed: 32; awk: 8
file content (18 lines) | stat: -rwxr-xr-x 368 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# Simple script to change the package configuration to 
#   Gnome 1.4 level.
#
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
   rm -f libgnomeui-2.0.pc
else
   mv libgnomeui-2.0.pc libgnomeui-2.0.pc.orig
fi