summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-03-05 13:52:29 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-03-05 13:52:29 (GMT)
commiteffe724cfde8d68ea2da459daf6ed07dd84a16a2 (patch)
tree0cfafd8dbb9bd7bdf18c636897c9f5ba82391a4e
parent59509f511ed8eacbefecc4357c69036fc036effe (diff)
downloadcpython-effe724cfde8d68ea2da459daf6ed07dd84a16a2.zip
cpython-effe724cfde8d68ea2da459daf6ed07dd84a16a2.tar.gz
cpython-effe724cfde8d68ea2da459daf6ed07dd84a16a2.tar.bz2
backport gvanrossum's checkin of
revision 1.76 of Makefile.pre.in SF patch #524005 by Paul Eggert. Use posixly correct sort args. Bugfix candidate.
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index a966931..d4ddc29 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -827,7 +827,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::