From: Glen Gibb Date: Tue, 8 Dec 2009 00:24:03 +0000 (-0800) Subject: Fix alphabetic ordering in lib/automake.mk X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa0361b7a085abd460a5a6236b137a69d871f8c5;p=openvswitch Fix alphabetic ordering in lib/automake.mk Files in lib_libopenvswitch_a_SOURCES list in automake.mk were incorrectly sorted. Files out of order: - lib/uuid.[ch] - lib/unixctl.[ch] --- diff --git a/lib/automake.mk b/lib/automake.mk index f216b3fb..cace97cf 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -135,14 +135,14 @@ lib_libopenvswitch_a_SOURCES = \ lib/timeval.c \ lib/timeval.h \ lib/type-props.h \ - lib/uuid.c \ - lib/uuid.h \ - lib/unixctl.c \ - lib/unixctl.h \ lib/unicode.c \ lib/unicode.h \ + lib/unixctl.c \ + lib/unixctl.h \ lib/util.c \ lib/util.h \ + lib/uuid.c \ + lib/uuid.h \ lib/valgrind.h \ lib/vconn-provider.h \ lib/vconn-ssl.h \