From d76d584e5cf896f1dc15baa0593ecbfa1c9f735b Mon Sep 17 00:00:00 2001 From: SyS Date: Tue, 6 Jul 2021 09:23:42 +0530 Subject: [PATCH] change cp to copt --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 4611c76..81903fb 100644 --- a/makefile +++ b/makefile @@ -2,8 +2,8 @@ ifdef OS TOOLCHAIN = +stable-i686-pc-windows-msvc BINARYNAME = samp_bcrypt.dll OUPUTNAME = samp_bcrypt.dll - CP_RELEASE = cp .\target\release\$(BINARYNAME) .\plugins\$(OUPUTNAME) - CP_DEBUG = cp .\target\debug\$(BINARYNAME) .\plugins\$(OUPUTNAME) + CP_RELEASE = copy .\target\release\$(BINARYNAME) .\plugins\$(OUPUTNAME) + CP_DEBUG = copy .\target\debug\$(BINARYNAME) .\plugins\$(OUPUTNAME) else ifeq ($(shell uname), Linux) TOOLCHAIN = +stable-i686-unknown-linux-gnu