From fc466113d870b0a7f63a3d219b94ab6be59bfd2e Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Wed, 31 Aug 2022 16:11:12 -0500 Subject: [PATCH] Correcting install step --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index beae5e3..b1d8aeb 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,9 @@ pkgdirname != basename `git config remote.origin.url` | sed 's/.git$$//' compile: c java bash php perl python cs @echo Done -install: clean compile test +install: clean compile mkdir -p ${pkgdir}/opt/aninix/${pkgdirname}/ - install -m root -o 0644 ./HelloWorld* ${pkgdir}/opt/aninix/${pkgdirname}/ + install -o root -m 0644 ./HelloWorld* ${pkgdir}/opt/aninix/${pkgdirname}/ test: compile python3 -m pytest