Skip to content

Commit fc97962

Browse files
committed
Minor build system fixes.
1 parent efecb0b commit fc97962

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ googletest/m4/ltoptions.m4
3535
googletest/m4/ltsugar.m4
3636
googletest/m4/ltversion.m4
3737
googletest/m4/lt~obsolete.m4
38+
googlemock/m4
3839

3940
# Ignore generated directories.
4041
googlemock/fused-src/

Makefile.am

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
## Process this file with automake to produce Makefile.in
2-
ACLOCAL_AMFLAGS = -I m4
3-
42
AUTOMAKE_OPTIONS = foreign
53

64
# Build . before src so that our all-local and clean-local hooks kicks in at

googlemock/Makefile.am

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Automake file
22

3+
ACLOCAL_AMFLAGS = -I m4
4+
35
# Nonstandard package files for distribution.
46
EXTRA_DIST = LICENSE
57

googlemock/configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ AC_INIT([Google C++ Mocking Framework],
88
# Provide various options to initialize the Autoconf and configure processes.
99
AC_PREREQ([2.59])
1010
AC_CONFIG_SRCDIR([./LICENSE])
11+
AC_CONFIG_MACRO_DIRS([m4])
1112
AC_CONFIG_AUX_DIR([build-aux])
1213
AC_CONFIG_HEADERS([build-aux/config.h])
1314
AC_CONFIG_FILES([Makefile])

googletest/configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AC_INIT([Google C++ Testing Framework],
1212
# Provide various options to initialize the Autoconf and configure processes.
1313
AC_PREREQ([2.59])
1414
AC_CONFIG_SRCDIR([./LICENSE])
15-
AC_CONFIG_MACRO_DIR([m4])
15+
AC_CONFIG_MACRO_DIRS([m4])
1616
AC_CONFIG_AUX_DIR([build-aux])
1717
AC_CONFIG_HEADERS([build-aux/config.h])
1818
AC_CONFIG_FILES([Makefile])

0 commit comments

Comments
 (0)