On Tue, Nov 11, 2014 at 07:28:50PM -0800, Scott Mann wrote: > Let me know what you want me to change, if you want me to do it. I'm still > paying attention :)
I folded in the following change to improve the Autoconf quoting (see, I said it was minor) and update AUTHORS, and applied this to master. diff --git a/configure.ac b/configure.ac index 9fa94f3..c3b26ec 100644 --- a/configure.ac +++ b/configure.ac @@ -72,11 +72,11 @@ m4_define([libopenvswitch_lt_revision], [0]) m4_define([libopenvswitch_lt_age], [0]) LT_CURRENT=libopenvswitch_lt_current -AC_SUBST(LT_CURRENT) +AC_SUBST([LT_CURRENT]) LT_REVISION=libopenvswitch_lt_revision -AC_SUBST(LT_REVISION) +AC_SUBST([LT_REVISION]) LT_AGE=libopenvswitch_lt_age -AC_SUBST(LT_AGE) +AC_SUBST([LT_AGE]) AC_SEARCH_LIBS([pow], [m]) AC_SEARCH_LIBS([clock_gettime], [rt]) diff --git a/AUTHORS b/AUTHORS index a15665a..2d30cb1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -131,6 +131,7 @@ Samuel Ghinet [email protected] Sanjay Sane [email protected] Saurabh Shah [email protected] Scott Lowe [email protected] +Scott Mann [email protected] Selvamuthukumar [email protected] Shan Wei [email protected] Shih-Hao Li [email protected] _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
