diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/pthreads/whitespace_in_path.patch | |
Diffstat (limited to 'vcpkg/ports/pthreads/whitespace_in_path.patch')
| -rw-r--r-- | vcpkg/ports/pthreads/whitespace_in_path.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vcpkg/ports/pthreads/whitespace_in_path.patch b/vcpkg/ports/pthreads/whitespace_in_path.patch new file mode 100644 index 0000000..77a24c1 --- /dev/null +++ b/vcpkg/ports/pthreads/whitespace_in_path.patch @@ -0,0 +1,27 @@ +--- a/Makefile Sat Apr 29 09:21:07 2023
++++ b/Makefile Sat Apr 29 09:19:07 2023
+@@ -223,15 +223,15 @@
+
+ # Very basic install. It assumes "realclean" was done just prior to build target.
+ install:
+- if not exist $(DLLDEST) mkdir $(DLLDEST)
+- if not exist $(LIBDEST) mkdir $(LIBDEST)
+- if not exist $(HDRDEST) mkdir $(HDRDEST)
+- if exist pthreadV*.dll copy pthreadV*.dll $(DLLDEST)
+- if exist pthreadV*.lib copy pthreadV*.lib $(LIBDEST)
+- copy _ptw32.h $(HDRDEST)
+- copy pthread.h $(HDRDEST)
+- copy sched.h $(HDRDEST)
+- copy semaphore.h $(HDRDEST)
++ if not exist "$(DLLDEST)" mkdir "$(DLLDEST)"
++ if not exist "$(LIBDEST)" mkdir "$(LIBDEST)"
++ if not exist "$(HDRDEST)" mkdir "$(HDRDEST)"
++ if exist pthreadV*.dll copy pthreadV*.dll "$(DLLDEST)"
++ if exist pthreadV*.lib copy pthreadV*.lib "$(LIBDEST)"
++ copy _ptw32.h "$(HDRDEST)"
++ copy pthread.h "$(HDRDEST)"
++ copy sched.h "$(HDRDEST)"
++ copy semaphore.h "$(HDRDEST)"
+
+ $(DLLS): $(DLL_OBJS)
+ $(CC) /LDd /Zi $(DLL_OBJS) /link /implib:$*.lib $(XLIBS) /out:$@
|