If `USE_GNOME_2_MACROS' is set, use the GNOME 2.0 macros from the
authorMartin Baulig <baulig@suse.de>
Mon, 29 May 2000 15:17:17 +0000 (15:17 +0000)
committerMartin Baulig <martin@src.gnome.org>
Mon, 29 May 2000 15:17:17 +0000 (15:17 +0000)
2000-05-29  Martin Baulig  <baulig@suse.de>

* gnome-autogen.sh: If `USE_GNOME_2_MACROS' is set, use the
GNOME 2.0 macros from the `macros2' directory.

svn path=/trunk/; revision=1254

macros/ChangeLog
macros/gnome-autogen.sh

index 4161f8f..ea24923 100644 (file)
@@ -1,5 +1,10 @@
 2000-05-29  Martin Baulig  <baulig@suse.de>
 
+       * gnome-autogen.sh: If `USE_GNOME_2_MACROS' is set, use the
+       GNOME 2.0 macros from the `macros2' directory.
+
+2000-05-29  Martin Baulig  <baulig@suse.de>
+
        * gnome-common.m4, Makefile.am: Install macros to
        `$(datadir)/aclocal/gnome-macros' when INSIDE_GNOME_COMMON.
 
index 33d98a6..c667827 100755 (executable)
@@ -1,6 +1,11 @@
 #!/bin/sh
 
-export GNOME_COMMON_MACROS_DIR=`gnome-config --datadir`/aclocal/gnome-macros
+if test -n "$USE_GNOME_2_MACROS" ; then
+  export GNOME_COMMON_MACROS_DIR=`gnome-config --datadir`/aclocal/gnome2-macros
+else
+  export GNOME_COMMON_MACROS_DIR=`gnome-config --datadir`/aclocal/gnome-macros
+fi
+
 export ACLOCAL_FLAGS="-I $GNOME_COMMON_MACROS_DIR $ACLOCAL_FLAGS"
 . $GNOME_COMMON_MACROS_DIR/autogen.sh