From 4e2972a5dc497cdf2e2e26c584021a16cb0b650c Mon Sep 17 00:00:00 2001 From: Jan-E Date: Sun, 13 Mar 2016 18:43:44 +0100 Subject: [PATCH] Use string for NGHTTP2_VERSION_NUM, e.g 0x010800: do not add parentheses --- lib/Makefile.msvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile.msvc b/lib/Makefile.msvc index 3a867368..21a93f9c 100644 --- a/lib/Makefile.msvc +++ b/lib/Makefile.msvc @@ -204,7 +204,7 @@ $(OBJ_DIR)/d_nghttp2.res: $(OBJ_DIR)/nghttp2.rc $(THIS_MAKEFILE) includes/nghttp2/nghttp2ver.h: includes/nghttp2/nghttp2ver.h.in $(THIS_MAKEFILE) sed < includes/nghttp2/nghttp2ver.h.in \ -e 's/@PACKAGE_VERSION@/$(VERSION)/g' \ - -e 's/@PACKAGE_VERSION_NUM@/($(VERSION_NUM))/g' > $@ + -e 's/@PACKAGE_VERSION_NUM@/$(VERSION_NUM)/g' > $@ touch --reference=includes/nghttp2/nghttp2ver.h.in $@