# HG changeset patch # User John Donoghue # Date 1405166132 14400 # Node ID 16615236ec376a60b4e81c37a8aaab0ef38fd957 # Parent 2313df3c96896554459acdf7994c29d043ad2cec Remove build-gawk as a dependacy in native mingw * Makefile.am: in native ming remove build-gawk build, and add awk as a requirement diff -r 2313df3c9689 -r 16615236ec37 Makefile.in --- a/Makefile.in Fri Jul 11 15:57:24 2014 -0400 +++ b/Makefile.in Sat Jul 12 07:55:32 2014 -0400 @@ -209,6 +209,11 @@ BUILD_TOOLS := $(filter-out build-python, $(BUILD_TOOLS)) endif +# use the a native awk in native mingw +ifeq ($(MXE_NATIVE_MINGW_BUILD),yes) + REQUIREMENTS += awk + BUILD_TOOLS := $(filter-out build-gawk, $(BUILD_TOOLS)) +endif ifeq ($(USE_SYSTEM_GCC),yes) BUILD_TOOLS := $(filter-out $(BUILD_COMPILER_TOOLS), $(BUILD_TOOLS))