Juniper / grpc-c

C implementation of gRPC layered on top of core library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

misprint in ./builddeps.sh

bhroee opened this issue · comments

Hello,
Seems like there is a misprint in ./builddeps.sh, line 21.
Current line:
./autogen.sh && ./configure --prefix=${pfx} && make && sudo make prefix=${pfix} install
Should be:
./autogen.sh && ./configure --prefix=${pfix} && make && sudo make prefix=${pfix} install

Notice ${pfx} is changed to ${pfix}
There is no variable named 'pfx' and as a result the prefix is set to an empty string.