mirror of
https://github.com/qca/qca-swiss-army-knife.git
synced 2026-01-27 17:07:18 +01:00
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
8 lines
113 B
Bash
Executable file
8 lines
113 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Running autoreconf..."
|
|
|
|
autoreconf -f -i -v
|
|
if [ $? -ne 0 ]; then
|
|
echo "autoreconf failed"
|
|
fi
|