I want to add a couple of logging options to GNU make so I can see what is happening when building FireFox and friends.
I have the make-3.80 sources and a complete working Cygwin build environment. Starting with ./configure and the Make I get a working executable as expected.
Question: What configuration is required so the executable in an identical manner to the make.exe bundled in Moztools?
Background:
If HAVE_CYGWIN_SHELL
is not defined then
with
#define HAVE_CYGWIN_SHELL 1
Make barfs as soon as it hits this section of the Mozilla configure script
CWD := $(shell pwd)
ifneq (1,$(words $(CWD)))
$(error The mozilla directory cannot be located in a path with spaces.)
endif
Thanks