Skip to content

Commit

Permalink
LIBDIRARCH does not propagate to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
YaSuenag committed Dec 10, 2023
1 parent 2fa9f60 commit 6c14cae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ install() {
fi
${MAKE} install
else # not OSX
test -d /usr/lib64 && ${MAKE} LIBDIRARCH=lib64
test -d /usr/lib64 && export LIBDIRARCH=lib64
${MAKE}
${MAKE} install
fi
}
Expand All @@ -89,7 +90,7 @@ uninstall() {
export PKGCFGDIR="$(pkg-config --variable pc_path pkg-config | cut -d ':' -f 1)"
${MAKE} uninstall
else # not OSX
test -d /usr/lib64 && LIBDIRARCH=lib64
test -d /usr/lib64 && export LIBDIRARCH=lib64
${MAKE} uninstall
fi
}
Expand Down

0 comments on commit 6c14cae

Please sign in to comment.