From 7c8245808c73e9c0582084a8a64e159c54570706 Mon Sep 17 00:00:00 2001 From: lda Date: Thu, 2 Nov 2023 15:53:27 -0400 Subject: [PATCH] [FIX] Wrong flag! --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index ab7ff85..bbf60e6 100644 --- a/action.yml +++ b/action.yml @@ -32,5 +32,5 @@ runs: echo Compiling Cytoplasm... cd ${{inputs.checkout}} export CC="${{inputs.compiler}}" - ./configure --no-static && make - [ "${{inputs.install}}" = "true" ] && make DESTDIR=/usr install + ./configure --prefix=/usr --no-static && make + [ "${{inputs.install}}" = "true" ] && make install