Skip to content

Commit

Permalink
compile.sh: re2c is needed for 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Jun 6, 2020
1 parent f87aefb commit ae07b96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
steps:
- bash: |
sudo apt-get update
sudo apt-get install make autoconf automake libtool libtool-bin m4 wget libc-bin gzip bzip2 bison g++ git
sudo apt-get install make autoconf automake libtool libtool-bin m4 wget libc-bin gzip bzip2 bison g++ git re2c
displayName: Install Dependencies
- bash: |
# Used "set -ex" instead of hashbang since script isn't executed with hashbang
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
vmImage: 'macOS-10.14'
steps:
- bash: |
brew install libtool autoconf automake pkg-config bison
brew install libtool autoconf automake pkg-config bison re2c
displayName: Install Dependencies
- bash: |
export PATH="/usr/local/opt/bison/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion compile.sh
Expand Up @@ -39,7 +39,7 @@ date > "$DIR/install.log" 2>&1
uname -a >> "$DIR/install.log" 2>&1
echo "[INFO] Checking dependencies"

COMPILE_SH_DEPENDENCIES=( make autoconf automake m4 getconf gzip bzip2 bison g++ git cmake pkg-config)
COMPILE_SH_DEPENDENCIES=( make autoconf automake m4 getconf gzip bzip2 bison g++ git cmake pkg-config re2c)
ERRORS=0
for(( i=0; i<${#COMPILE_SH_DEPENDENCIES[@]}; i++ ))
do
Expand Down

0 comments on commit ae07b96

Please sign in to comment.