support only U3_LIB, no hardcoded urb/

This commit is contained in:
Raymond Pasco 2016-02-03 14:31:29 -05:00
parent fda8ff38a4
commit 282b933882

View File

@ -204,8 +204,6 @@ _main_getopt(c3_i argc, c3_c** argv)
struct stat s;
if ( stat("urbit.pill", &s) == 0 ) {
u3_Host.ops_u.pil_c = strdup("urbit.pill");
} else if ( stat("urb/urbit.pill", &s) == 0 ) {
u3_Host.ops_u.pil_c = strdup("urb/urbit.pill");
#ifdef U3_LIB
} else if ( stat(U3_LIB"/urbit.pill", &s) == 0 ) {
u3_Host.ops_u.pil_c = strdup(U3_LIB"/urbit.pill");