Fix autotools build
CMake seems to find the libnfc includes and libraries, but not the autotools. Pass them to ./configure.
This commit is contained in:
parent
a884eb3dca
commit
d0f78c4880
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ if [ "$BLD" = autotools ]; then
|
||||||
autoreconf -vis
|
autoreconf -vis
|
||||||
mkdir build-autotools
|
mkdir build-autotools
|
||||||
cd build-autotools
|
cd build-autotools
|
||||||
../configure --prefix=$HOME/.local
|
../configure --prefix=$HOME/.local CFLAGS="-I$HOME/.local/include" LDFLAGS="-L$HOME/.local/lib"
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
elif [ "$BLD" = cmake ]; then
|
elif [ "$BLD" = cmake ]; then
|
||||||
|
|
Loading…
Reference in a new issue