Browse Source

OSX build installs to /usr/local prefix

tags/v1.9.13
Thomas Brand 7 years ago
parent
commit
2387a2d908
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      .ci/test_run.sh

+ 5
- 3
.ci/test_run.sh View File

@@ -1,12 +1,11 @@
#!/bin/bash

#stop here if ./waf install wasn't successful
ls -l /usr/bin/jackd || exit

echo "`date`"
echo "$TRAVIS_OS_NAME"
echo "========================================================================="
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
#stop here if ./waf install wasn't successful
ls -l /usr/bin/jackd || exit
#find installed files
sudo updatedb
locate jack | grep -e "/usr/bin" -e "/usr/lib" -e "/usr/share/man" -e "/usr/include"
@@ -16,6 +15,9 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then
#check for unused dependencies
ls -1 /usr/bin/jack_*|while read line; do
echo "checking unused dependencies for ${line}:"; ldd -r -u "$line"; done
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
#stop here if ./waf install wasn't successful
ls -l /usr/local/bin/jackd || exit
fi
echo "========================================================================="
jackd --version


Loading…
Cancel
Save