From 132911b3b54b89b4aa8abd1e185b4a71d01957b1 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 14 Oct 2015 04:30:51 +0000 Subject: [PATCH 1/1] extract-odp-netlink-h: Portablitiy improvement \t is GNU sed extension. Use [[:space:]] instead. Signed-off-by: YAMAMOTO Takashi Acked-by: Ben Pfaff --- build-aux/extract-odp-netlink-h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/extract-odp-netlink-h b/build-aux/extract-odp-netlink-h index b414330cb..aafe69ab8 100755 --- a/build-aux/extract-odp-netlink-h +++ b/build-aux/extract-odp-netlink-h @@ -23,7 +23,7 @@ $i\ # Use OVS's own struct eth_addr instead of a 6-byte char array. s,,"openvswitch/types.h", s,#.*,, -s/__u8[ \t]*\([a-zA-Z0-9_]*\)[ \t]*\[[ \t]*ETH_ALEN[ \t]*\]/struct eth_addr \1/ +s/__u8[[:space:]]*\([a-zA-Z0-9_]*\)[[:space:]]*\[[[:space:]]*ETH_ALEN[[:space:]]*\]/struct eth_addr \1/ # Transform most Linux-specific __u types into C99 uint_t types, # and most Linux-specific __be into Open vSwitch ovs_be, -- 2.20.1