URI: 
       ttry again - 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 6dfd0c502aaccd9dd98cc1f5ee957d4a68ae73ec
   DIR parent c384ebd2ce67b0289562ac416ff1c233dbd23a13
  HTML Author: rsc <devnull@localhost>
       Date:   Wed, 19 Jan 2005 16:44:22 +0000
       
       ttry again
       
       Diffstat:
         M src/cmd/rio/mkfile                  |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/src/cmd/rio/mkfile b/src/cmd/rio/mkfile
       t@@ -15,10 +15,10 @@ HFILES=dat.h fns.h
        
        TARG=rio
        
       -# should only use lib64 on x86-64, but it should not hurt elsewhere
       -# stupid Darwin complains about the nonexistant directory
       -L64=`[ -d $X11/lib64 ] && echo 64`
       -LDFLAGS=-L$X11/lib$L64 -lXext -lX11
       +# need to add lib64 when it exists (on x86-64), but
       +# Darwin complains about the nonexistant directory
       +L64=`[ -d $X11/lib64 ] && echo 64; echo`
       +LDFLAGS=-L$X11/lib$L64\ -lXext -lX11
        
        <$PLAN9/src/mkone