9 lines
164 B
Bash
Executable file
9 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -e .git ] && command -v git >/dev/null 2>&1; then
|
|
git config blame.ignoreRevsFile .git-blame-ignore-revs
|
|
fi
|
|
|
|
autoreconf --force --install
|