mirror of https://github.com/ecmwf/eccodes.git
14 lines
211 B
Bash
14 lines
211 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
autotools_dir=/usr/bin
|
||
|
|
||
|
export PATH=$autotools_dir:$PATH
|
||
|
|
||
|
autoreconf=$autotools_dir/autoreconf
|
||
|
|
||
|
echo -----------------------
|
||
|
$autoreconf --version
|
||
|
echo -----------------------
|
||
|
$autoreconf -i -f -Im4
|
||
|
|