fix the syntax

This commit is contained in:
Sylvestre Ledru 2016-03-13 10:50:33 +00:00
parent 470974aef2
commit 0ccac78eec

9
debian/rules vendored
View File

@ -210,14 +210,11 @@ override_dh_auto_configure: preconfigure
if test -d /tmp/cmake/bin; then \ if test -d /tmp/cmake/bin; then \
ls /tmp/cmake/bin; \ ls /tmp/cmake/bin; \
fi fi
CMAKE_BIN=cmake CMAKE_BIN=cmake; \
if test -f /tmp/cmake/bin/cmake; then \ if test -f /tmp/cmake/bin/cmake; then \
CMAKE_BIN=/tmp/cmake/bin/cmake; \ CMAKE_BIN=/tmp/cmake/bin/cmake; \
fi fi; \
echo $$CMAKE_BIN echo $$CMAKE_BIN; \
# TODO(axw) specify build type for CMake
# TODO(axw) pass compiler flags, etc.
cd $(TARGET_BUILD) && \ cd $(TARGET_BUILD) && \
$$CMAKE_BIN ../ \ $$CMAKE_BIN ../ \
-DCMAKE_INSTALL_PREFIX=/usr/lib/llvm-$(LLVM_VERSION) \ -DCMAKE_INSTALL_PREFIX=/usr/lib/llvm-$(LLVM_VERSION) \