mirror of
https://github.com/capstone-engine/capstone
synced 2026-08-11 16:26:07 -04:00
LIBDIRARCH does not propagate to Makefile (#2214)
This commit is contained in:
parent
0cd3f2cee9
commit
b9c260e917
1 changed files with 3 additions and 2 deletions
5
make.sh
5
make.sh
|
|
@ -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
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue