Update BUILD.autotools.md (#624)

* Update BUILD.autotools.md

Do not recommend using in-source Autotools build.

Closes: #621
This commit is contained in:
Ihor Dutchak
2023-09-17 08:33:03 +03:00
committed by GitHub
parent c19ae126d8
commit 116bda5d47

View File

@@ -46,7 +46,9 @@ A simple command list, to build HIDAPI with Autotools as a _shared library_ and
```sh
./bootstrap # this prepares the configure script
./configure
mkdir build
cd build # in-source builds are not recommended and known to be broken in some cases (https://github.com/libusb/hidapi/issues/621)
../configure
make # build the library
make install # as root, or using sudo, this will install hidapi into your system
```