Fossil SCM
Prevent shell argument manipulation performed automatically by the MinGW shell from interfering with the makeheaders tool used by the Makefile.
Commit
827a54fe6ca6cb23e03df0bf44724f796fb45d75
Parent
5ffb7d71d373d98…
1 file changed
+5
-1
+5
-1
| --- Makefile.in | ||
| +++ Makefile.in | ||
| @@ -9,13 +9,17 @@ | ||
| 9 | 9 | # the following to point from the build directory to the src/ folder. |
| 10 | 10 | # |
| 11 | 11 | SRCDIR = @srcdir@/src |
| 12 | 12 | |
| 13 | 13 | #### The directory into which object code files should be written. |
| 14 | +# Having a "./" prefix in the value of this variable breaks our use of the | |
| 15 | +# "makeheaders" tool when running make on the MinGW platform, apparently | |
| 16 | +# due to some command line argument manipulation performed automatically | |
| 17 | +# by the shell. | |
| 14 | 18 | # |
| 15 | 19 | # |
| 16 | -OBJDIR = ./bld | |
| 20 | +OBJDIR = bld | |
| 17 | 21 | |
| 18 | 22 | #### C Compiler and options for use in building executables that |
| 19 | 23 | # will run on the platform that is doing the build. This is used |
| 20 | 24 | # to compile code-generator programs as part of the build process. |
| 21 | 25 | # See TCC below for the C compiler for building the finished binary. |
| 22 | 26 |
| --- Makefile.in | |
| +++ Makefile.in | |
| @@ -9,13 +9,17 @@ | |
| 9 | # the following to point from the build directory to the src/ folder. |
| 10 | # |
| 11 | SRCDIR = @srcdir@/src |
| 12 | |
| 13 | #### The directory into which object code files should be written. |
| 14 | # |
| 15 | # |
| 16 | OBJDIR = ./bld |
| 17 | |
| 18 | #### C Compiler and options for use in building executables that |
| 19 | # will run on the platform that is doing the build. This is used |
| 20 | # to compile code-generator programs as part of the build process. |
| 21 | # See TCC below for the C compiler for building the finished binary. |
| 22 |
| --- Makefile.in | |
| +++ Makefile.in | |
| @@ -9,13 +9,17 @@ | |
| 9 | # the following to point from the build directory to the src/ folder. |
| 10 | # |
| 11 | SRCDIR = @srcdir@/src |
| 12 | |
| 13 | #### The directory into which object code files should be written. |
| 14 | # Having a "./" prefix in the value of this variable breaks our use of the |
| 15 | # "makeheaders" tool when running make on the MinGW platform, apparently |
| 16 | # due to some command line argument manipulation performed automatically |
| 17 | # by the shell. |
| 18 | # |
| 19 | # |
| 20 | OBJDIR = bld |
| 21 | |
| 22 | #### C Compiler and options for use in building executables that |
| 23 | # will run on the platform that is doing the build. This is used |
| 24 | # to compile code-generator programs as part of the build process. |
| 25 | # See TCC below for the C compiler for building the finished binary. |
| 26 |