2000-05-29 Martin Baulig <baulig@suse.de> * gnome-common.m4, Makefile.am: Install macros to `$(datadir)/aclocal/gnome-macros' when INSIDE_GNOME_COMMON. * gnome-autogen.sh: New file. When using gnome-common instead of the macros/ directory, use this in your autogen.sh. svn path=/trunk/; revision=3258
15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
# gnome-common.m4
|
|
#
|
|
# This only for packages that are not in the GNOME CVS tree.
|
|
|
|
dnl GNOME_COMMON_INIT
|
|
|
|
AC_DEFUN([GNOME_COMMON_INIT],
|
|
[
|
|
GNOME_ACLOCAL_DIR=`$ACLOCAL --print-ac-dir`/gnome-macros
|
|
AC_SUBST(GNOME_ACLOCAL_DIR)
|
|
|
|
ACLOCAL="$ACLOCAL -I $GNOME_ACLOCAL_DIR"
|
|
])
|
|
|