Don't check U3_LIB for pills

This commit is contained in:
Raymond Pasco 2016-08-28 13:12:14 -04:00
parent 30f590c7a8
commit 1f8050aede

View File

@ -204,10 +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");
#ifdef U3_LIB
} else if ( stat(U3_LIB"/urbit.pill", &s) == 0 ) {
u3_Host.ops_u.pil_c = strdup(U3_LIB"/urbit.pill");
#endif
} else {
fprintf(stderr, "Could not find urbit.pill\n");
return c3n;