Skip to content

Commit

Permalink
LIBDIRARCH does not propagate to Makefile (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
YaSuenag authored Jan 3, 2024
1 parent 0cd3f2c commit b9c260e
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 b9c260e

Please sign in to comment.