Browse Source

Merge pull request #69 from matt335672/remote_tabs_from_scripts

Remove unnecessary tabs from scripts
pull/70/head
matt335672 2 years ago
committed by GitHub
parent
commit
0b30713223
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      scripts/install_pulseaudio_sources_apt.sh

+ 3
- 3
scripts/install_pulseaudio_sources_apt.sh View File

@ -82,12 +82,12 @@ if [ ! -d "$PULSE_DIR" ]; then
cd "$build_dir" cd "$build_dir"
if [ -x ./configure ]; then if [ -x ./configure ]; then
# This version of PA uses autotools to build # This version of PA uses autotools to build
# This command creates ./config.h
# This command creates ./config.h
./configure ./configure
elif [ -f ./meson.build ]; then elif [ -f ./meson.build ]; then
# Meson only # Meson only
rm -rf build
# This command creates ./build/config.h
rm -rf build
# This command creates ./build/config.h
meson build meson build
else else
echo "** Unable to configure pulseaudio from files in $(pwd)" >&2 echo "** Unable to configure pulseaudio from files in $(pwd)" >&2


Loading…
Cancel
Save