From 25b2c007dbc0b5080fc56e632f8e8fe7af1bb367 Mon Sep 17 00:00:00 2001 From: Raymond Pasco Date: Sun, 28 Aug 2016 13:12:34 -0400 Subject: [PATCH] Use pil_c rather than U3_LIB to copy pill --- vere/sist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vere/sist.c b/vere/sist.c index 3b690fe63..fab43b89c 100644 --- a/vere/sist.c +++ b/vere/sist.c @@ -311,8 +311,8 @@ _sist_home() // Copy urbit.pill. // { - snprintf(ful_c, 2048, "cp %s/urbit.pill %s/.urb", - U3_LIB, u3_Host.dir_c); + snprintf(ful_c, 2048, "cp %s %s/.urb", + u3_Host.ops_u.pil_c, u3_Host.dir_c); printf("%s\r\n", ful_c); if ( 0 != system(ful_c) ) { uL(fprintf(uH, "could not %s\n", ful_c));