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