Skip to content

Commit

Permalink
Minor build improvements.
Browse files Browse the repository at this point in the history
The build_linux.sh scripts stops when encountering an error
and reports what it is doing.

Directories constructed temporarily during the build
ignored by git, as we do not want to version those.

/usr/bin has become the official dwelling place of bash.
  • Loading branch information
aknrdureegaesr committed Nov 6, 2021
1 parent 4656afb commit 2f804e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
LPCNet
build_linux
codec2
5 changes: 4 additions & 1 deletion build_linux.sh
@@ -1,9 +1,12 @@
#!/bin/bash
#!/usr/bin/bash
# build_ubuntu.sh
#
# Build script for Ubuntu and Fedora Linux, git pulls codec2 and
# lpcnet repos so they are available for parallel development.

# Echo what you are doing, and fail if any of the steps fail:
set -x -e

export FREEDVGUIDIR=${PWD}
export CODEC2DIR=$FREEDVGUIDIR/codec2
export LPCNETDIR=$FREEDVGUIDIR/LPCNet
Expand Down

0 comments on commit 2f804e6

Please sign in to comment.