summaryrefslogtreecommitdiff
path: root/RELEASING
diff options
context:
space:
mode:
authorThomas Klausner <wiz@danbala.tuwien.ac.at>2007-03-16 10:04:56 -0700
committerCarl Worth <cworth@cworth.org>2007-03-16 10:06:51 -0700
commit8236282c5d58320173b17659e488384e710d0ea7 (patch)
tree1579686a81af571462640ff1733b2ea6685ab528 /RELEASING
parent332c38b6c34bde4829607e534f39522f8001acf7 (diff)
Use "find !" rather than "find -not" for better portability
The man page for GNU find says: -not expr Same as ! expr, but not POSIX compliant. And actually, on e.g. NetBSD, "-not" is not supported. This resolved the following bug: https://bugs.freedesktop.org/show_bug.cgi?id=10226
Diffstat (limited to 'RELEASING')
-rw-r--r--RELEASING2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASING b/RELEASING
index a116a816..adc42922 100644
--- a/RELEASING
+++ b/RELEASING
@@ -42,7 +42,7 @@ Here are the steps to follow to create a new cairo release:
the following command will show each patch that has changed a
public header file since the given version:
- find src/ -name '*.h' -not -name '*-private.h' -not -name '*-test.h' -not -name 'cairoint.h' | \
+ find src/ -name '*.h' ! -name '*-private.h' ! -name '*-test.h' ! -name 'cairoint.h' | \
xargs git log -p X.Y.Z.. --
4) Increment cairo_version_{minor|micro} and LT_{CURRENT|VERSION|AGE}