diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-03-23 13:41:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-03-23 13:41:59 -0300 |
commit | aa93bb2844ce784ed43129a119ddc0514973a2b3 (patch) | |
tree | 9c61a5e92db78fe061ac08835c1be766607153f9 | |
parent | 935fa627897a8f7ad396e6b385a9af7baf8a9783 (diff) | |
download | stowpkg-aa93bb2844ce784ed43129a119ddc0514973a2b3.tar.gz stowpkg-aa93bb2844ce784ed43129a119ddc0514973a2b3.tar.bz2 |
Requires make
-rwxr-xr-x | stowpkg | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -42,6 +42,12 @@ __stowpkg_initialize () { exit 1 fi + # Check for make + if ! which make > /dev/null 2>&1; then + echo "$BASENAME: please install make first" + exit 1 + fi + # Sudo config if [ "`whoami`" != 'root' ]; then SUDO="sudo" |