diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-12-21 14:30:27 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-12-21 14:30:27 (GMT) |
commit | d8ecb145ac85fea67f55732ffc3018247bc33aae (patch) | |
tree | d8f0abd6022ec2b54eed619ab2074832df36a38c /scripts/uni-build-dependencies.sh | |
parent | b43cee7f418c4cc202346843a3bd94d8f56bcffd (diff) |
deal with black-on-white terminals. opencsg:dont copy lib/.libs if not there.
Diffstat (limited to 'scripts/uni-build-dependencies.sh')
-rwxr-xr-x | scripts/uni-build-dependencies.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/uni-build-dependencies.sh b/scripts/uni-build-dependencies.sh index c39d383..f7bedb6 100755 --- a/scripts/uni-build-dependencies.sh +++ b/scripts/uni-build-dependencies.sh @@ -297,13 +297,14 @@ build_opencsg() make - ls lib/* lib/.libs/* include/* + ls lib/* include/* + if [ -e lib/.libs ]; then ls lib/.libs/*; fi # netbsd echo "installing to -->" $DEPLOYDIR mkdir -p $DEPLOYDIR/lib mkdir -p $DEPLOYDIR/include install lib/* $DEPLOYDIR/lib - install lib/.libs/* $DEPLOYDIR/lib # netbsd install include/* $DEPLOYDIR/include + if [ -e lib/.libs ]; then install lib/.libs/* $DEPLOYDIR/lib; fi #netbsd cd $BASEDIR } |