X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=vswitchd%2Fautomake.mk;h=0a2c7ff70199897edbe47a533caedbf9dfff87c1;hb=404c169247b1c3ac2ebad887f0421478a6cef924;hp=4c3c07622e5c490aac578f96ffe63dfed2815e18;hpb=7c9b00732c633ddd35b9d92fb9fa4c4f8e3ce390;p=openvswitch diff --git a/vswitchd/automake.mk b/vswitchd/automake.mk index 4c3c0762..0a2c7ff7 100644 --- a/vswitchd/automake.mk +++ b/vswitchd/automake.mk @@ -92,3 +92,17 @@ vswitchd/ovs-vswitchd.conf.db.5: \ $(srcdir)/vswitchd/vswitch.ovsschema \ $(srcdir)/vswitchd/vswitch.xml > $@.tmp mv $@.tmp $@ + +# Version checking for vswitch.ovsschema. +ALL_LOCAL += vswitchd/vswitch.ovsschema.stamp +vswitchd/vswitch.ovsschema.stamp: vswitchd/vswitch.ovsschema + @sum=`sed '/cksum/d' $? | cksum`; \ + expected=`sed -n 's/.*"cksum": "\(.*\)".*/\1/p' $?`; \ + if test "X$$sum" = "X$$expected"; then \ + touch $@; \ + else \ + ln=`sed -n '/"cksum":/=' $?`; \ + echo >&2 "$?:$$ln: checksum \"$$sum\" does not match (you should probably update the version number and fix the checksum)"; \ + exit 1; \ + fi +CLEANFILES += vswitchd/vswitch.ovsschema.stamp