mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 08:21:16 -05:00
Merge pull request #1754 from srcejon/fix_1740
Fix syntax error in cmake/ci/build_sdrangel.sh and remote external files from .deb
This commit is contained in:
commit
c50e5991d2
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ ${CI_LINUX} = true ]; then
|
if [ "${TRAVIS_OS_NAME}" == "linux" ] || [ "${CI_LINUX}" == true ]; then
|
||||||
debuild -i -us -uc -b
|
debuild -i -us -uc -b
|
||||||
else
|
else
|
||||||
mkdir -p build; cd build
|
mkdir -p build; cd build
|
||||||
|
6
debian/rules
vendored
6
debian/rules
vendored
@ -5,6 +5,12 @@
|
|||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
dh_auto_configure -- -DARCH_OPT=nehalem -DENABLE_EXTERNAL_LIBRARIES=AUTO -DDEBUG_OUTPUT=ON -DBUILD_SERVER=OFF
|
dh_auto_configure -- -DARCH_OPT=nehalem -DENABLE_EXTERNAL_LIBRARIES=AUTO -DDEBUG_OUTPUT=ON -DBUILD_SERVER=OFF
|
||||||
|
|
||||||
|
# delete any external projects (such as libsigmf) that are installed
|
||||||
|
# would be better if we could prevent them from being installed in CMakeLists.txt
|
||||||
|
override_dh_install:
|
||||||
|
-find debian/sdrangel -type d -name external -exec rm -r {} \; -exec mkdir {} \; -exec rmdir -p {} \;
|
||||||
|
dh_install
|
||||||
|
|
||||||
override_dh_auto_test:
|
override_dh_auto_test:
|
||||||
echo "Skipping test step"
|
echo "Skipping test step"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user