Skip to content
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.

Commit

Permalink
Update build_tachyon_linux
Browse files Browse the repository at this point in the history
fixed wrong use of shell variable
  • Loading branch information
sslivins committed May 13, 2016
1 parent 6193486 commit 52798c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build_scripts/build_tachyon_linux
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
set -e
TEMP_INSTALL_PREFIX='/tmp/tachyon'
INSTALL_PREFIX='/opt/tachyon'
rm -fr TEMP_INSTALL_PREFIX
mkdir -p TEMP_INSTALL_PREFIX
rm -fr $TEMP_INSTALL_PREFIX
mkdir -p $TEMP_INSTALL_PREFIX
export PKG_CONFIG_PATH+=:$INSTALL_PREFIX/lib/pkgconfig/
##################
#opus#
Expand Down Expand Up @@ -77,4 +77,4 @@ git clone https://github.com/bazukas/obs-qtwebkit.git
cd obs-qtwebkit
make
make install DESTDIR=$TEMP_INSTALL_PREFIX
cd ..
cd ..

0 comments on commit 52798c9

Please sign in to comment.