From fa0361b7a085abd460a5a6236b137a69d871f8c5 Mon Sep 17 00:00:00 2001 From: Glen Gibb Date: Mon, 7 Dec 2009 16:24:03 -0800 Subject: [PATCH] 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] --- lib/automake.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 \ -- 2.30.2