Skip to content

Commit fcb6c07

Browse files
sbeyergitster
authored andcommitted
Makefile: resort filenames alphabetically
Some filenames in the Makefile got out of order. This patch resorts the filename lists which makes it easier to grasp that it is sorted and that this should be kept. Signed-off-by: Stephan Beyer <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2f33415 commit fcb6c07

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ PROGRAMS += git-var$X
317317
# builtin-$C.o but is linked in as part of some other command.
318318
BUILT_INS += $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
319319

320-
BUILT_INS += git-cherry-pick$X
321320
BUILT_INS += git-cherry$X
321+
BUILT_INS += git-cherry-pick$X
322322
BUILT_INS += git-format-patch$X
323323
BUILT_INS += git-fsck-objects$X
324324
BUILT_INS += git-get-tar-commit-id$X
@@ -357,8 +357,8 @@ LIB_H += builtin.h
357357
LIB_H += cache.h
358358
LIB_H += cache-tree.h
359359
LIB_H += commit.h
360-
LIB_H += compat/mingw.h
361360
LIB_H += compat/cygwin.h
361+
LIB_H += compat/mingw.h
362362
LIB_H += csum-file.h
363363
LIB_H += decorate.h
364364
LIB_H += delta.h
@@ -383,7 +383,6 @@ LIB_H += pack-refs.h
383383
LIB_H += pack-revindex.h
384384
LIB_H += parse-options.h
385385
LIB_H += patch-ids.h
386-
LIB_H += string-list.h
387386
LIB_H += pkt-line.h
388387
LIB_H += progress.h
389388
LIB_H += quote.h
@@ -397,6 +396,7 @@ LIB_H += sha1-lookup.h
397396
LIB_H += sideband.h
398397
LIB_H += sigchain.h
399398
LIB_H += strbuf.h
399+
LIB_H += string-list.h
400400
LIB_H += tag.h
401401
LIB_H += transport.h
402402
LIB_H += tree.h
@@ -435,8 +435,8 @@ LIB_OBJS += diffcore-order.o
435435
LIB_OBJS += diffcore-pickaxe.o
436436
LIB_OBJS += diffcore-rename.o
437437
LIB_OBJS += diff-delta.o
438-
LIB_OBJS += diff-no-index.o
439438
LIB_OBJS += diff-lib.o
439+
LIB_OBJS += diff-no-index.o
440440
LIB_OBJS += diff.o
441441
LIB_OBJS += dir.o
442442
LIB_OBJS += editor.o
@@ -468,9 +468,9 @@ LIB_OBJS += pager.o
468468
LIB_OBJS += parse-options.o
469469
LIB_OBJS += patch-delta.o
470470
LIB_OBJS += patch-ids.o
471-
LIB_OBJS += string-list.o
472471
LIB_OBJS += path.o
473472
LIB_OBJS += pkt-line.o
473+
LIB_OBJS += preload-index.o
474474
LIB_OBJS += pretty.o
475475
LIB_OBJS += progress.o
476476
LIB_OBJS += quote.o
@@ -484,13 +484,14 @@ LIB_OBJS += revision.o
484484
LIB_OBJS += run-command.o
485485
LIB_OBJS += server-info.o
486486
LIB_OBJS += setup.o
487-
LIB_OBJS += sha1_file.o
488487
LIB_OBJS += sha1-lookup.o
488+
LIB_OBJS += sha1_file.o
489489
LIB_OBJS += sha1_name.o
490490
LIB_OBJS += shallow.o
491491
LIB_OBJS += sideband.o
492492
LIB_OBJS += sigchain.o
493493
LIB_OBJS += strbuf.o
494+
LIB_OBJS += string-list.o
494495
LIB_OBJS += symlinks.o
495496
LIB_OBJS += tag.o
496497
LIB_OBJS += trace.o
@@ -499,16 +500,15 @@ LIB_OBJS += tree-diff.o
499500
LIB_OBJS += tree.o
500501
LIB_OBJS += tree-walk.o
501502
LIB_OBJS += unpack-trees.o
502-
LIB_OBJS += userdiff.o
503503
LIB_OBJS += usage.o
504+
LIB_OBJS += userdiff.o
504505
LIB_OBJS += utf8.o
505506
LIB_OBJS += walker.o
506507
LIB_OBJS += wrapper.o
507508
LIB_OBJS += write_or_die.o
508509
LIB_OBJS += ws.o
509510
LIB_OBJS += wt-status.o
510511
LIB_OBJS += xdiff-interface.o
511-
LIB_OBJS += preload-index.o
512512

513513
BUILTIN_OBJS += builtin-add.o
514514
BUILTIN_OBJS += builtin-annotate.o

0 commit comments

Comments
 (0)