2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * *.directory: Renamed to *.directory.in to be used with xml-i18n-tools. * *.desktop: Renamed to *.desktop to be used with xml-i18n-tools. * *.glade: Modified to not generate the glade.h files. * *.glade.h: Removed. * Makefile.am: Modify to use xml-i18n-tools * configure.in: ditto. * autogen.sh: ditto, now we use the macros/autogen.sh 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * .cvsignore: ssshhhh 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * screensavers/*.xml: /s/label/_label, /s/low-label/_low-label/, /s/high-label/_high-label/: Changed to let xml-i18n-tools extract this labels. * extract-labels.c: Removed, now, we use xml-i18n-tools. * preferences.c: /s/label/_label, /s/low-label/_low-label/, /s/high-label/_high-label/: Changed to sync with the xml changes. * screensaver-prefs-dialog.c: ditto. 2001-07-16 Carlos Perelló Marín <carlos@gnome-db.org> * no.po: Solved some conflicts with my patch. 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * POTFILES.in: Updated to reflect the xml-i18n-tools use. * *.po: Added the .directory && .desktop translations. * update.*: Removed. * wa.po: Added. * es.po: Updated Spanish translation.
16 lines
404 B
Bash
Executable file
16 lines
404 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PKG_NAME="GNOME Control Center"
|
|
|
|
(test -f $srcdir/capplets/common/capplet-util.h \
|
|
&& test -d $srcdir/control-center) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level "\`$PKG_NAME\'" directory"
|
|
exit 1
|
|
}
|
|
|
|
. $srcdir/macros/autogen.sh
|