summaryrefslogtreecommitdiff
path: root/lib/make/make.config.rules.in
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-09-28 02:45:28 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-09-28 02:45:28 +0000
commit247c55146bdc71db2f3b5b3944a9fcc9914ba467 (patch)
tree9c9d2c85fd561e7779766d895911994a6a96bf99 /lib/make/make.config.rules.in
parentaeebc07e94b8a96c9634b9fdf3a191bcab304a98 (diff)
remove bashisms and unnecessary curly braces
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4738 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.config.rules.in')
-rw-r--r--lib/make/make.config.rules.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/make/make.config.rules.in b/lib/make/make.config.rules.in
index eda4b54c..bddad398 100644
--- a/lib/make/make.config.rules.in
+++ b/lib/make/make.config.rules.in
@@ -30,20 +30,20 @@ INCLUDE_LINE = $(patsubst %,-I"%",$(call TRANSFORM_DIRS,$(INC_DIRS)))
#####################################################################
define NOTIFY_PREPROCESSING
- { if test "$(VERBOSE)" == "yes"; then echo Preprocessing $<; fi }
+ if test "$(VERBOSE)" = "yes"; then echo Preprocessing $<; fi
endef
define NOTIFY_COPYING
- { if test "$(VERBOSE)" == "yes"; then echo Copying $<; fi }
+ if test "$(VERBOSE)" = "yes"; then echo Copying $<; fi
endef
define NOTIFY_COMPILING
- { if test "$(VERBOSE)" == "yes"; then echo Compiling $<; \
- else echo COMPILING $<; fi }
+ if test "$(VERBOSE)" = "yes"; then echo Compiling $<; \
+ else echo COMPILING $<; fi
endef
define NOTIFY_POSTPROCESSING
- { if test "$(VERBOSE)" == "yes"; then echo Postprocessing $<; fi }
+ if test "$(VERBOSE)" = "yes"; then echo Postprocessing $<; fi
endef
define NOTIFY_DIVIDER
- { if test "$(VERBOSE)" == "yes"; then echo $(DIVIDER); fi }
+ if test "$(VERBOSE)" = "yes"; then echo $(DIVIDER); fi
endef
# Define how to do dependencies