mirror of
https://github.com/phatina/simple-mtpfs
synced 2025-01-13 18:32:15 +00:00
10 lines
115 B
Bash
Executable File
10 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit on errors
|
|
set -e
|
|
|
|
srcdir=$(dirname $0)
|
|
test -z "$srcdir" && $srcdir=.
|
|
|
|
autoreconf -ifv $srcdir
|