Skip to content

Commit

Permalink
Merge pull request #10 from txtsd/fix_building
Browse files Browse the repository at this point in the history
Fix build script to work with bash 5.2
  • Loading branch information
fstecker authored Nov 11, 2023
2 parents 63def65 + d085568 commit dbf07cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ mudeps=('freetype2' 'gumbo' 'harfbuzz' 'libjpeg' 'libopenjp2' 'x11' 'zlib')

mkdir -p $outd/{$wsid,lablGL}

isfresh() { test "$(<$1.past)" = "$2"; } 2>/dev/null
isfresh() {
test -f "$1.past" || return 1
test "$(<$1.past)" = "$2"
} 2>/dev/null


mbt=${mbt:-release}
test -n "${gmk:-}" && gmk=false || gmk=true
Expand Down

0 comments on commit dbf07cf

Please sign in to comment.