Skip to content
Snippets Groups Projects
Commit 277f7f3e authored by Jeong Han Lee's avatar Jeong Han Lee
Browse files

disable to add + to the end of version

parent 76d08ee0
No related branches found
No related tags found
No related merge requests found
......@@ -1210,8 +1210,15 @@ static int handleDependencies(const char* module, char* depfilename)
while (*end && !isspace((unsigned char)*end)) end++;
/* add + to numerial versions if not yet there */
/*
ESS would like to use the MATCH version only, not HIGHER.
In order to touch the PSI code mininaly, disable add + from VERSION from Dep file.
At the same time, ESS use the X.X.X instead of X.X.
Wednesday, May 2 00:12:18 CEST 2018, jhlee
*/
/*
if (*(end-1) != '+' && strspn(rversion, "0123456789.") == (size_t)(end-rversion)) *end++ = '+';
*/
/* terminate version */
*end = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment