diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2009-08-16 16:09:06 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2009-08-16 16:23:45 +0200 |
commit | 27a00086567ddfcafa66ee6a1c98be714285903a (patch) | |
tree | 070b364df1fa42d70b823f2cbe386d5ee4bef6c3 /Makefile.am | |
parent | 74da263b45388dc90cb72ce388bc071fef3d1a0e (diff) | |
download | glibmm-27a00086567ddfcafa66ee6a1c98be714285903a.tar.gz |
Move M4 files from scripts/ over to build/
* scripts/*.m4: Move files over to the build/ directory, in order
to be more consistent with the directory layout of other binding
modules that switched to the new build organization.
* Makefile.am (ACLOCAL_AMFLAGS): Search build/ for M4 files.
(dist_aclocal_macro_DATA): Adjust directory prefix to build/.
* configure.ac (AC_CONFIG_MACRO_DIR): Place third-party Autoconf
macros into the build/ directory.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 797c027e..b45cf50f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see <http://www.gnu.org/licenses/>. -ACLOCAL_AMFLAGS = -I scripts ${ACLOCAL_FLAGS} +ACLOCAL_AMFLAGS = -I build ${ACLOCAL_FLAGS} DISTCHECK_CONFIGURE_FLAGS = --enable-warnings=fatal if MAINTAINER_MODE @@ -57,4 +57,4 @@ DISTCLEANFILES = $(filter %mmconfig.h,$(msvc_files)) # TODO: Obsolete; remove after grace period. aclocal_macrodir = $(datadir)/aclocal -dist_aclocal_macro_DATA = scripts/glibmm_check_perl.m4 +dist_aclocal_macro_DATA = build/glibmm_check_perl.m4 |