summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-02-28 19:26:08 (GMT)
committerGuido van Rossum <guido@python.org>2002-02-28 19:26:08 (GMT)
commitc948966fc4bc301e375d059a23c716a99aef4352 (patch)
tree839138bf9501154e8a18047f5ebb5971b785658d /Makefile.pre.in
parent51e234aa68697decbd360240bc68fb439f522951 (diff)
downloadcpython-c948966fc4bc301e375d059a23c716a99aef4352.zip
cpython-c948966fc4bc301e375d059a23c716a99aef4352.tar.gz
cpython-c948966fc4bc301e375d059a23c716a99aef4352.tar.bz2
SF patch #524005 by Paul Eggert.
Use posixly correct sort args. Bugfix candidate.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index f964e41..5bed545 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -828,7 +828,7 @@ tags::
ctags -w -t Include/*.h; \
for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
done; \
- sort tags -o tags
+ sort -o tags tags
# Create a tags file for GNU Emacs
TAGS::