mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-14 15:26:27 +10:00
26 lines
584 B
Bash
Executable File
26 lines
584 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z `which hg` ]; then
|
|
echo '* Could not find mercurial (try `sudo apt-get install mercurial`)'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z `which ar` ]; then
|
|
echo '* Could not find binutils (try `sudo apt-get install binutils (or binutils-multiarch)`)'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z `which bison` ]; then
|
|
echo '* Could not find bison (try `sudo apt-get install bison`)'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z `which gcc` ]; then
|
|
echo '* Could not find gcc (try `sudo apt-get install gcc`)'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z `which make` ]; then
|
|
echo '* Could not find make (try `sudo apt-get install make`)'
|
|
exit 1
|
|
fi
|