[ovs-dev] [PATCH] lib: Fix alphabetic ordering in lib/automake.mk

Glen Gibb grg at stanford.edu
Mon Dec 7 22:54:22 UTC 2009


NOTE: This is a trivial cosmetic change that results in *no* functional 
changes.

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 f216b3f..cace97c 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 \





More information about the dev mailing list