summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Erik Rediger <janerik@fnordig.de>2016-04-20 18:48:39 +0200
committerJan-Erik Rediger <janerik@fnordig.de>2016-04-20 18:48:39 +0200
commit0616677c932acff214c228850febcc1a07edb140 (patch)
tree504a66a9bbaa0ed819da2296c51341e688c48685
parentacf895004165fe845c61e2c7ece4c3e2d03021d3 (diff)
docs: Add breaking change note about makefile variable
-rw-r--r--CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c62fe9..f92bcb3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,14 @@ This removes the following old function aliases, use the new name now:
| redisReplyReaderGetObject | redisReaderGetObject |
| redisReplyReaderGetError | redisReaderGetError |
+* The `DEBUG` variable in the Makefile was renamed to `DEBUG_FLAGS`
+
+Previously it broke some builds for people that had `DEBUG` set to some arbitrary value,
+due to debugging other software.
+By renaming we avoid unintentional name clashes.
+
+Simply rename `DEBUG` to `DEBUG_FLAGS` in your environment to make it working again.
+
### 0.13.3 (2015-09-16)
* Revert "Clear `REDIS_CONNECTED` flag when connection is closed".