URI: 
       tupdate mkmk.sh - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 33adad7dc7934a898e51bc37706d2552da980846
   DIR parent b253a743b29e0e3ee920e1e3cf874a4321fe10bc
  HTML Author: rsc <devnull@localhost>
       Date:   Tue,  4 Jan 2005 22:44:52 +0000
       
       update mkmk.sh
       
       Diffstat:
         M src/cmd/postscript/printfont/print… |       4 ++--
         M src/mkmk.sh                         |       6 +++++-
       
       2 files changed, 7 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/src/cmd/postscript/printfont/printfont.rc b/src/cmd/postscript/printfont/printfont.rc
       t@@ -1,10 +1,10 @@
       -#!/bin/rc
       +#!/usr/local/plan9/bin/rc
        # Formatted dump of encoded characters in one or more PostScript fonts.
        # Arguments should be PostScript font names or the word all, which dumps
        # all ROM and disk based fonts.
        #
        
       -POSTLIB=/sys/lib/postscript/prologues
       +POSTLIB=/usr/local/plan9/postscript/prologues
        PROLOGUE=$POSTLIB/printfont.ps
        
        OPTIONS=''
   DIR diff --git a/src/mkmk.sh b/src/mkmk.sh
       t@@ -32,6 +32,7 @@ cd lib9
        9c  encodefmt.c
        9c  errstr.c
        9c  exec.c
       +9c  execl.c
        9c  fcallfmt.c
        9c  get9root.c
        9c getcallerpc-$OBJTYPE.c || 9a getcallerpc-$OBJTYPE.s
       t@@ -61,6 +62,7 @@ cd lib9
        9c  postnote.c
        9c  qlock.c
        9c  quote.c
       +9c  rand.c
        9c  read9pmsg.c
        9c  readn.c
        9c  rfork.c
       t@@ -179,15 +181,17 @@ cd cmd/mk
        9c  mk.c
        9c  parse.c
        9c  recipe.c
       +9c  rc.c
        9c  rule.c
        9c  run.c
        9c  sh.c
       +9c  shell.c
        9c  shprint.c
        9c  symtab.c
        9c  var.c
        9c  varsub.c
        9c  word.c
        9c  unix.c
       -9l -o o.mk arc.o archive.o bufblock.o env.o file.o graph.o job.o lex.o main.o match.o mk.o parse.o recipe.o rule.o run.o sh.o shprint.o symtab.o var.o varsub.o word.o unix.o $PLAN9/lib/libregexp9.a $PLAN9/lib/libbio.a $PLAN9/lib/lib9.a 
       +9l -o o.mk arc.o archive.o bufblock.o env.o file.o graph.o job.o lex.o main.o match.o mk.o parse.o recipe.o rc.o rule.o run.o sh.o shell.o shprint.o symtab.o var.o varsub.o word.o unix.o 
        install -c o.mk $PLAN9/bin/mk
        cd ..