From f3da7c1f32e030600cb6fc2360a8f2b0b764e458 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 24 Jul 2019 23:46:14 -0700 Subject: [PATCH] Replaced bashism "[[" with "test -n" --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 6a76459..fad7aba 100644 --- a/Makefile +++ b/Makefile @@ -54,10 +54,10 @@ $(NAME): $(NAME).c bterm.h config.h install: $(NAME) @prefix="$(PREFIX)"; \ - if [[ ! $$prefix ]]; then \ + if test -n $$prefix; then \ read -p $$'\033[1mWhere do you want to install? (default: /usr/local) \033[0m' prefix; \ fi; \ - if [[ ! $$prefix ]]; then \ + if test -n $$prefix; then \ prefix="/usr/local"; \ fi; \ mkdir -pv $$prefix/bin $$prefix/share/man/man1 \ @@ -66,10 +66,10 @@ install: $(NAME) uninstall: @prefix="$(PREFIX)"; \ - if [[ ! $$prefix ]]; then \ + if test -n $$prefix; then \ read -p $$'\033[1mWhere do you want to uninstall from? (default: /usr/local) \033[0m' prefix; \ fi; \ - if [[ ! $$prefix ]]; then \ + if test -n $$prefix; then \ prefix="/usr/local"; \ fi; \ echo "Deleting..."; \