mirror of
https://github.com/phatina/simple-mtpfs
synced 2025-03-07 05:38:24 +00:00
10 lines
113 B
Bash
Executable File
10 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# exit on errors
|
|
set -e
|
|
|
|
srcdir=$(dirname $0)
|
|
test -z "$srcdir" && $srcdir=.
|
|
|
|
autoreconf -ifv $srcdir
|