Fossil SCM
Don't use "file nativename" in makemake.tcl, because it gives a different win/Makefile.msc when run on UNIX
Commit
af80be5cef31634825d94815cf8164dddfe2fc3977670fcd41a0c7383604287d
Parent
8c0ec30bc3e8401…
1 file changed
+1
-1
+1
-1
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -1806,11 +1806,11 @@ | ||
| 1806 | 1806 | foreach s [lsort $extra_files] { |
| 1807 | 1807 | if {$i > 0} { |
| 1808 | 1808 | writeln " \\" |
| 1809 | 1809 | writeln -nonewline " " |
| 1810 | 1810 | } |
| 1811 | - set s [file nativename $s] | |
| 1811 | + set s [regsub -all / $s \\] | |
| 1812 | 1812 | writeln -nonewline "\$(SRCDIR)\\${s}"; incr i |
| 1813 | 1813 | } |
| 1814 | 1814 | writeln "\n" |
| 1815 | 1815 | set AdditionalObj [list shell sqlite3 th th_lang th_tcl cson_amalgamation] |
| 1816 | 1816 | writeln -nonewline "OBJ = " |
| 1817 | 1817 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -1806,11 +1806,11 @@ | |
| 1806 | foreach s [lsort $extra_files] { |
| 1807 | if {$i > 0} { |
| 1808 | writeln " \\" |
| 1809 | writeln -nonewline " " |
| 1810 | } |
| 1811 | set s [file nativename $s] |
| 1812 | writeln -nonewline "\$(SRCDIR)\\${s}"; incr i |
| 1813 | } |
| 1814 | writeln "\n" |
| 1815 | set AdditionalObj [list shell sqlite3 th th_lang th_tcl cson_amalgamation] |
| 1816 | writeln -nonewline "OBJ = " |
| 1817 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -1806,11 +1806,11 @@ | |
| 1806 | foreach s [lsort $extra_files] { |
| 1807 | if {$i > 0} { |
| 1808 | writeln " \\" |
| 1809 | writeln -nonewline " " |
| 1810 | } |
| 1811 | set s [regsub -all / $s \\] |
| 1812 | writeln -nonewline "\$(SRCDIR)\\${s}"; incr i |
| 1813 | } |
| 1814 | writeln "\n" |
| 1815 | set AdditionalObj [list shell sqlite3 th th_lang th_tcl cson_amalgamation] |
| 1816 | writeln -nonewline "OBJ = " |
| 1817 |