Skip to content

Commit

Permalink
arm: fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Feb 6, 2022
1 parent 3d9a457 commit 7dcd080
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ if [ "$BUILD_TARGET" == "linux_arm32" ]; then
sudo dpkg-deb -x libasound2_1.1.3-5_armhf.deb /
# sudo dpkg-deb -x libpulse0_11.1-1ubuntu7_armhf.deb /
sudo cp -a /usr/lib/arm-linux-gnueabihf/* /usr/arm-linux-gnueabihf/lib/
pushd /usr/arm-linux-gnuabihf/lib/
ln -s libasound.so.2.0.0 libasound.so
pushd /usr/arm-linux-gnueabihf/lib/
sudo ln -s libasound.so.2.0.0 libasound.so
popd
sudo cp -a /usr/include/alsa /usr/arm-linux-gnueabihf/include/
# sudo cp -a /usr/include/pulse /usr/arm-linux-gnueabihf/include/
Expand All @@ -57,7 +57,7 @@ if [ "$BUILD_TARGET" == "linux_arm64" ]; then
# sudo dpkg-deb -x libpulse0_11.1-1ubuntu7_arm64.deb /
sudo cp -a /usr/lib/aarch64-linux-gnu/* /usr/aarch64-linux-gnu/lib/
pushd /usr/aarch64-linux-gnu/lib/
ln -s libasound.so.2.0.0 libasound.so
sudo ln -s libasound.so.2.0.0 libasound.so
popd
sudo cp -a /usr/include/alsa /usr/aarch64-linux-gnu/include/
# sudo cp -a /usr/include/pulse /usr/aarch64-linux-gnu/include/
Expand Down

0 comments on commit 7dcd080

Please sign in to comment.