Skip to content

Commit

Permalink
Merge pull request #1173 from wantehchang/pwd-command-substitution
Browse files Browse the repository at this point in the history
Replace `pwd` with $(pwd) for command substitution
  • Loading branch information
farindk authored Jun 11, 2024
2 parents a1cde1e + b18a5b5 commit cafc68d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions third-party/svt.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ git clone -b v1.2.1 --depth 1 https://gitlab.com/AOMediaCodec/SVT-AV1.git
cd SVT-AV1
cd Build/linux

./build.sh release static no-dec no-apps prefix=`pwd`/install install
./build.sh release static no-dec no-apps prefix=$(pwd)/install install
cd ../../..

echo ""
echo "----- NOTE ----"
echo "Please add the path to the pkg-config file to your PKG_CONFIG_PATH, like this:"
echo "export PKG_CONFIG_PATH=\$PKG_CONFIG_PATH:`pwd`/SVT-AV1/Build/linux/install/lib/pkgconfig"
echo "export PKG_CONFIG_PATH=\$PKG_CONFIG_PATH:$(pwd)/SVT-AV1/Build/linux/install/lib/pkgconfig"

0 comments on commit cafc68d

Please sign in to comment.