I noticed this: m4/gnulib-comp.m4:62: m4_defn([m4_PACKAGE_VERSION])), [1], [], m4/gnulib-comp.m4:64: [GNUmakefile=$GNUmakefile])]) maint.mk: found SPACE-TAB sequence; remove the SPACE make: *** [sc_space_tab] Error 1
How about the patch below? /Simon 2011-04-25 Simon Josefsson <[email protected]> * modules/gnumakefile (GNUmakefile): Replace TAB with SPCs. diff --git a/modules/gnumakefile b/modules/gnumakefile index 483ff74..a86475a 100644 --- a/modules/gnumakefile +++ b/modules/gnumakefile @@ -14,9 +14,9 @@ configure.ac: # builds, so use a shell variable to bypass this. GNUmakefile=GNUmakefile m4_if(m4_version_compare([2.61a.100], - m4_defn([m4_PACKAGE_VERSION])), [1], [], + m4_defn([m4_PACKAGE_VERSION])), [1], [], [AC_CONFIG_LINKS([$GNUmakefile:$GNUmakefile], [], - [GNUmakefile=$GNUmakefile])]) + [GNUmakefile=$GNUmakefile])]) Makefile.am: distclean-local: clean-GNUmakefile
