mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 04:20:06 +01:00
* Makefile.am: add po as a supdir
* autogen.sh: use gnome-autogen.sh
* initscript/Gentoo/.cvsignore:
* initscript/RedHat/.cvsignore: Shut up cvs
* panel-applet/Makefile.am: Define GNOMELOCALEDIR for bonobo.
* panel-applet/NMWirelessApplet.c: (nmwa_populate_menu),
(nmwa_fill): Use gettext.
* configure.in: add gettext support
* po/.cvsignore:
* po/NetworkManager.pot:
* po/POTFILES.in:
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@80 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
23 lines
525 B
Bash
Executable file
23 lines
525 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
REQUIRED_AUTOMAKE_VERSION=1.7
|
|
PKG_NAME=NetworkManager
|
|
|
|
(test -f $srcdir/configure.in \
|
|
&& test -f $srcdir/src/NetworkManager.h) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level $PKG_NAME directory"
|
|
exit 1
|
|
}
|
|
|
|
|
|
which gnome-autogen.sh || {
|
|
echo "You need to install gnome-common from the GNOME CVS"
|
|
exit 1
|
|
}
|
|
USE_GNOME2_MACROS=1 . gnome-autogen.sh
|
|
|
|
|