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

Commit 52798c9

Browse files
committed
Update build_tachyon_linux
fixed wrong use of shell variable
1 parent 6193486 commit 52798c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build_scripts/build_tachyon_linux

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -e
33
TEMP_INSTALL_PREFIX='/tmp/tachyon'
44
INSTALL_PREFIX='/opt/tachyon'
5-
rm -fr TEMP_INSTALL_PREFIX
6-
mkdir -p TEMP_INSTALL_PREFIX
5+
rm -fr $TEMP_INSTALL_PREFIX
6+
mkdir -p $TEMP_INSTALL_PREFIX
77
export PKG_CONFIG_PATH+=:$INSTALL_PREFIX/lib/pkgconfig/
88
##################
99
#opus#
@@ -77,4 +77,4 @@ git clone https://github.com/bazukas/obs-qtwebkit.git
7777
cd obs-qtwebkit
7878
make
7979
make install DESTDIR=$TEMP_INSTALL_PREFIX
80-
cd ..
80+
cd ..

0 commit comments

Comments
 (0)