mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Merge pull request #823 from proller/fix
Fix clang finding in release script
This commit is contained in:
commit
93b80b740a
4
debian/copy_clang_binaries.sh
vendored
4
debian/copy_clang_binaries.sh
vendored
@ -7,6 +7,10 @@ DST=${1:-.};
|
||||
PATH="/usr/local/bin:/usr/local/sbin:/usr/bin:$PATH"
|
||||
LD=$(command -v gold || command -v ld.gold || command -v ld)
|
||||
|
||||
if [ -z "$CLANG" ]; then
|
||||
CLANG=$(which clang)
|
||||
fi
|
||||
|
||||
if [ ! -x "$CLANG" ]; then
|
||||
echo "Not found executable clang."
|
||||
exit 1
|
||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@ -21,7 +21,7 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
|
||||
DEB_CC ?= gcc-6
|
||||
DEB_CXX ?= g++-6
|
||||
DEB_CLANG ?= $(shell command -v clang)
|
||||
DEB_CLANG ?= $(shell which clang)
|
||||
|
||||
DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
||||
DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
||||
|
Loading…
Reference in New Issue
Block a user