diff mbox

[ovs-dev,3/3] m4: Rename compat.at to compat.m4.

Message ID 1456164051-6799-3-git-send-email-blp@ovn.org
State Accepted
Headers show

Commit Message

Ben Pfaff Feb. 22, 2016, 6 p.m. UTC
This is used by both Autoconf and Autotest, so it doesn't make sense for
it to have a .at (Autotest) extension.

Signed-off-by: Ben Pfaff <blp@ovn.org>
---
 m4/{compat.at => compat.m4} | 0
 m4/openvswitch.m4           | 4 ++--
 tests/ovs-macros.at         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename m4/{compat.at => compat.m4} (100%)
diff mbox

Patch

diff --git a/m4/compat.at b/m4/compat.m4
similarity index 100%
rename from m4/compat.at
rename to m4/compat.m4
diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4
index 0149c30..3a579f2 100644
--- a/m4/openvswitch.m4
+++ b/m4/openvswitch.m4
@@ -1,6 +1,6 @@ 
 # -*- autoconf -*-
 
-# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.
+# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@ 
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-m4_include([m4/compat.at])
+m4_include([m4/compat.m4])
 
 dnl Checks for --enable-coverage and updates CFLAGS and LDFLAGS appropriately.
 AC_DEFUN([OVS_CHECK_COVERAGE],
diff --git a/tests/ovs-macros.at b/tests/ovs-macros.at
index f09af4e..f2923b0 100644
--- a/tests/ovs-macros.at
+++ b/tests/ovs-macros.at
@@ -2,7 +2,7 @@  AT_TESTED([ovs-vswitchd])
 AT_TESTED([ovs-vsctl])
 AT_TESTED([perl])
 
-m4_include([m4/compat.at])
+m4_include([m4/compat.m4])
 
 dnl Make AT_SETUP automatically run the ovs_init() shell function
 dnl as the first step in every test.