Skip to content

Commit

Permalink
fix: pack_zetasql.sh
Browse files Browse the repository at this point in the history
install command not defined for header file installation
  • Loading branch information
aceforeverd authored Oct 22, 2024
1 parent e4fcbd3 commit ceaf951
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pack_zetasql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ install_gen_include_file() {
local outfile
outfile=$(echo "$file" | sed -e 's/^.*proto\///')

if [[ "$OSTYPE" == "linux-gnu"* ]]
then
INSTALL_BIN="install"
else
INSTALL_BIN="ginstall"
fi

${INSTALL_BIN} -Dv "$file" "$PREFIX/include/$outfile"
}

Expand Down

0 comments on commit ceaf951

Please sign in to comment.