Change-Id: I268a3e663b9228f4ad809fd9d330a438b6c916ba
* the spec's encoding so we only check what we can: plain ascii.
*/
if (isascii(N[0]) && !(risalnum(N[0]) || N[0] == '_' || N[0] == '/')) {
- rasprintf(emsg, _("Dependency tokens must begin with alpha-numeric, '_' or '/'"));
- return RPMRC_FAIL;
+ //rasprintf(emsg, _("Dependency tokens must begin with alpha-numeric, '_' or '/'"));
+ rpmlog(RPMLOG_INFO,
+ _("line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n"),
+ spec->lineNum, spec->line);
+ //return RPMRC_FAIL;
}
if (EVR) {
if (N[0] == '/') {