summaryrefslogtreecommitdiff |
diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | conf/constants.conf.example | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -53,7 +53,7 @@ reset: ## INTERNAL RULES ############################################################## ################################################################################ $(PREPROCESSED_FILES): %: $(CONFIG_FILE) %.m4 - m4 $^ > $@ + m4 -P $^ > $@ $(MODULES_WWW): %: ln -s $(SRC_DIR)/$(patsubst $(WWW_DIR)/%,%,$@)/www/ $@ diff --git a/conf/constants.conf.example b/conf/constants.conf.example index 57df17f..b436ed5 100644 --- a/conf/constants.conf.example +++ b/conf/constants.conf.example @@ -1,3 +1,3 @@ -define(`__CONF_SERVER_NAME', `LOCAL SERVER')dnl -define(`__CONF_SERVER_URL', `http://127.0.0.1')dnl -define(`__CONF_AUTHOR_NAME', `localuser')dnl +m4_define(`__CONF_SERVER_NAME', `LOCAL SERVER')m4_dnl +m4_define(`__CONF_SERVER_URL', `http://127.0.0.1')m4_dnl +m4_define(`__CONF_AUTHOR_NAME', `localuser')m4_dnl |