summaryrefslogtreecommitdiff
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
parentaeebc07e94b8a96c9634b9fdf3a191bcab304a98 (diff)
remove bashisms and unnecessary curly braces
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4738 17b73243-c579-4c4c-a9d2-2d5706c11dac
-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