Skip to content

Commit

Permalink
fix: Allow building again
Browse files Browse the repository at this point in the history
Co-authored-by: temhelk <[email protected]>
Signed-off-by: txtsd <[email protected]>
  • Loading branch information
txtsd and temhelk committed Nov 10, 2023
1 parent 63def65 commit d085568
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 d085568

Please sign in to comment.