[svn-r15992] Merge with 1.8 rev 15973

make -b accept both MEMORY and NATIVE
Tested: linux
This commit is contained in:
Pedro Vicente Nunes 2008-10-29 15:14:51 -05:00
parent 8f00f520ff
commit 4c08397e79

View File

@ -3220,8 +3220,11 @@ set_binary_form(const char *form)
{
int bform=-1;
if (strcmp(form,"NATIVE")==0) /* native form */
if (strcmp(form,"NATIVE")==0 ||
strcmp(form,"MEMORY")==0)
{/* native form */
bform = 0;
}
else if (strcmp(form,"FILE")==0) /* file type form */
bform = 1;
else if (strcmp(form,"LE")==0) /* convert to little endian */