summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkito <jkito@github>2022-11-01 00:33:54 +0530
committerkali kaneko (leap communications) <kali@leap.se>2022-11-08 21:39:10 +0100
commit7122e8f22e4f0d64c26da22730dbc43548d7df21 (patch)
tree885807b254e656b9994bfc9ce454df2b75a11bca
parent5bb891f4c315e7c4c671b6da94a31ba8378bb677 (diff)
[pkg] symlinking the vendor dir doesn't work on cygwin
this changes the symlinking to instead copy the vendor files same as done for when detecting platform is mingw
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef9a0f7..2f4a381 100644
--- a/Makefile
+++ b/Makefile
@@ -133,7 +133,7 @@ ifeq ($(VENDOR_PATH), providers)
endif
endif # end mingw
ifeq ($(UNAME), CYGWIN_NT-10.0)
- @[ -L providers/assets ] || (CYGWIN=winsymlinks:nativestrict ln -s ${PROVIDER}/assets providers/assets)
+ @[ -L providers/assets ] || cp -r providers/${PROVIDER}/assets providers/assets
endif # end cygwin
else # not windows: linux/osx
ifeq ($(VENDOR_PATH), providers)