From 5387face45298ac758e45729d7bf7330c2c044fe Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sun, 22 Oct 2023 16:05:43 -0700 Subject: [PATCH] rename print.cpp -> jprint.cpp In GHA builder somehow print.cpp becomes PRINT.obj instead of print.obj for mkmf.pl, which later fails when print.obj is missing. (apparently windows filesystems are now case sensitive...) --- src/json/Makefile | 2 +- src/json/{print.cpp => jprint.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/json/{print.cpp => jprint.cpp} (100%) diff --git a/src/json/Makefile b/src/json/Makefile index 0baca83..1988c17 100644 --- a/src/json/Makefile +++ b/src/json/Makefile @@ -7,4 +7,4 @@ INC += pv/json.h LIBSRCS += parsehelper.cpp LIBSRCS += parseany.cpp LIBSRCS += parseinto.cpp -LIBSRCS += print.cpp +LIBSRCS += jprint.cpp diff --git a/src/json/print.cpp b/src/json/jprint.cpp similarity index 100% rename from src/json/print.cpp rename to src/json/jprint.cpp