Skip to content

Commit

Permalink
Update BUILD.autotools.md (#624)
Browse files Browse the repository at this point in the history
* Update BUILD.autotools.md

Do not recommend using in-source Autotools build.

Closes: #621
  • Loading branch information
Youw committed Sep 17, 2023
1 parent c19ae12 commit 116bda5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BUILD.autotools.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 116bda5

Please sign in to comment.