mirror of
https://github.com/libusb/libusb
synced 2024-11-21 06:26:10 -07:00
1001cb5558
Building libusb from another build directory doesn't properly work right now, as calling autogen.sh from there won't work. An example is when using jhbuild to build it. So always use absolute paths to call configure and bootstrap scripts Signed-off-by: Ludovic Rousseau <ludovic.rousseau@free.fr>
10 lines
99 B
Bash
Executable file
10 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ ! -d m4 ]; then
|
|
mkdir m4
|
|
fi
|
|
exec autoreconf -ivf
|