From a7583cd2409fd187bd66ae6d068b26bb64413583 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Wed, 22 Aug 2007 18:25:34 +0000 Subject: [PATCH] Change a syntax that the GNU make in Solaris dislikes. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@80304 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 58c44eede2..474f5070cf 100644 --- a/Makefile +++ b/Makefile @@ -645,9 +645,7 @@ sounds: # last clean count we had cleantest: - @if ! cmp -s .cleancount .lastclean ; then \ - $(MAKE) clean;\ - fi + @cmp -s .cleancount .lastclean || $(MAKE) clean $(SUBDIRS_UNINSTALL): @$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall