From 54dcc9bf56db44088044db4ceca2a42c1ff3e5f7 Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Sat, 26 Jun 2004 19:25:39 +0000 Subject: [PATCH] Fix astman build (bug #1930) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3321 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- astman/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/astman/Makefile b/astman/Makefile index d3bf6ea87a..8a69ee0c82 100755 --- a/astman/Makefile +++ b/astman/Makefile @@ -8,8 +8,7 @@ ifeq ($(findstring BSD,${OSARCH}),BSD) CFLAGS+=-I/usr/local/include -L/usr/local/lib endif -TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else echo "none" ; fi) -TARGET=$(shell if [ -f /usr/local/include/newt.h ]; then echo "astman"; else echo "none" ; fi) +TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; else echo "none" ; fi ; fi) all: depend $(TARGET) install: -- GitLab