summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/make/make.config.rules.in12
-rw-r--r--lib/make/make.configuration2
-rw-r--r--lib/make/make.thornlib2
3 files changed, 8 insertions, 8 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
diff --git a/lib/make/make.configuration b/lib/make/make.configuration
index cef05216..8d74235d 100644
--- a/lib/make/make.configuration
+++ b/lib/make/make.configuration
@@ -49,7 +49,7 @@ CACTUSLIBS = $(FLESHLIB) $(BINDINGSLIB)
DIVEL = __________________
DIVIDER = $(DIVEL)$(DIVEL)$(DIVEL)$(DIVEL)
define NOTIFY_DIVIDER
- { if test "$(VERBOSE)" == "yes"; then echo $(DIVIDER); fi }
+ if test "$(VERBOSE)" = "yes"; then echo $(DIVIDER); fi
endef
# Include the definitions for this configuration
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index c246ddab..49861b0e 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -15,7 +15,7 @@
DIVEL = __________________
DIVIDER = $(DIVEL)$(DIVEL)$(DIVEL)$(DIVEL)
define NOTIFY_DIVIDER
- { if test "$(VERBOSE)" == "yes"; then echo $(DIVIDER); fi }
+ if test "$(VERBOSE)" = "yes"; then echo $(DIVIDER); fi
endef
# Include the main make definitions for this configuration