Skip to content

Commit

Permalink
beeversion: parser - alos support deprecated .iee suffix for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Aug 16, 2011
1 parent 780b6a5 commit c349a75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/beeversion/parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ int parse_version(char *string, struct beeversion *v)
if((p=strstr(s, ".bee"))) {
v->suffix = p+1;
*p=0;
} else if((p=strstr(s, ".iee"))) {
v->suffix = p+1;
*p=0;
}

/* extract architecture if known.. */
Expand Down

0 comments on commit c349a75

Please sign in to comment.