summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorCraig Small <csmall@users.sourceforge.net>2012-06-11 11:36:55 +1000
committerCraig Small <csmall@users.sourceforge.net>2012-06-11 11:36:55 +1000
commitf0c122324ddaad51ed2ad3396422e6721b6658ff (patch)
treeaccfc7197f96caeff6f03dafdf60b892e483b395 /ChangeLog
parent92f84199ed8b22b95683a368246d0e7f076dafdd (diff)
sed uses proper BRE
Apparently even though [0-9]+ works most of the time, its not proper BRE and doesn't work ALL of the time. Replacing this with [0-9][0-9]* makes everyone happy. Noticed by Rich from the busybox project and reported by John Spencer of the same project.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog1
1 files changed, 1 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c12b2a8..2be2030 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
Changes in 22.18
================
* Added AC_CANONICAL_TARGET for target_os Debian #673485
+ * sed doesn't have [0-9]+ replace with [0-9][0-9]*
Changes in 22.17
================