* configure.in (GNOME_X_CHECKS): Add new check. (AC_OUTPUT): Also generate `macros/Makefile'. * Makefile.am (macros/macros.dep): Maintainer rule to auto-regenerate aclocal.m4. (SUBDIRS): Add `macros'. * help-browser/gnome-helpwin.c (gnome_helpwin_load): Replace `snprintf' with `g_snprintf'.
17 lines
396 B
Bash
Executable file
17 lines
396 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 Core Utilities"
|
|
|
|
(test -f $srcdir/configure.in \
|
|
&& test -f $srcdir/HACKING \
|
|
&& test -d $srcdir/gsm) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level gnome directory"
|
|
exit 1
|
|
}
|
|
|
|
. $srcdir/macros/autogen.sh
|