mohawk2
mohawk2
I have made a working Travis config. I would like a working appveyor config now. It seems AppVeyor offer MinGW and various Visual Studio installations in their standard build. I...
Transferred from AOO bugzilla: The patch contains fixes for this: 1) dmake is not able even start if it is installed in a directory containing spaces in directory name. -...
I have problem while configure dmake for mingw. Configure script doesn't correctly detect win platform. I attach patch for this issue ``` --- a/configure 2012-11-27 12:44:45 +0400 +++ b/configure 2012-11-27...
not sure if this is a feature that helps more that it creates confusion ;) just for the record: ``` # doesn't work #bla:=uuu:;\ # echo hier # #$(bla) ttt:;...
I built dmake on Windows using mingw and msys. Used a patch similar to the msys patch listed here. I'm trying to work with the FHS standard to determine where...
Reported by [email protected], Nov 17, 2012 [What steps will reproduce the problem?] 1. Set up a cygwin-provisioned MS Windows system 2. Install the Mingw toolchain 3. Correctly configure PATH for...
(from schwern) Hi, I maintain ExtUtils::MakeMaker that makes Makefiles to install Perl modules. Since its an automated thing, and a bit long in the tooth, it sometimes creates rather long...
this is a followup to issue 85014. taking the same sample makefile and commandline ``` - - - makefile.mk - - - SHELL:=cmd.exe SHELLFLAGS:=/S /C all : exists @echo Done...
Testcase: ``` foobar ?= VALUE:="plain-rule" foobar_% ?= VALUE:="percent-rule" foobar: echo "value $(VALUE)" foobar_%: echo "value $(VALUE)" ``` running dmake foobar prints "value plain-rule" - but when running dmake foobar_abc it...
In issue 80368 it can be seen that it can be a problem that %-targets without prerequisites are not shown in ambiguous inference chains. With the following attached makefile try:...