9 lines
77 B
Bash
Executable File
9 lines
77 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ ! -d m4 ]; then
|
|
mkdir m4
|
|
fi
|
|
exec autoreconf -ivf
|