| commit | a699daf6afc17d8e7085b3cd2413f4d25ca689fe | [log] [tgz] |
|---|---|---|
| author | rsc <devnull@localhost> | Wed Jul 13 13:44:35 2005 +0000 |
| committer | rsc <devnull@localhost> | Wed Jul 13 13:44:35 2005 +0000 |
| tree | 0892b7155475cec2bf7bc47f0d979b723cd06fbc | |
| parent | 7b99eb273267e775f0534e09390f1e24c0a84543 [diff] |
work around bug in mk?
diff --git a/src/cmd/rio/mkfile b/src/cmd/rio/mkfile index 754a26c..a640e59 100644 --- a/src/cmd/rio/mkfile +++ b/src/cmd/rio/mkfile
@@ -20,8 +20,10 @@ # need to add lib64 when it exists (on x86-64), but # Darwin complains about the nonexistant directory +# Bug in mk? "$L64 -lXext" gobbles the space, so +# add trailing slash. L64=`[ -d $X11/lib64 ] && echo 64; echo` -LDFLAGS=-L$X11/lib$L64 -lXext -lX11 +LDFLAGS=-L$X11/lib$L64/ -lXext -lX11 <$PLAN9/src/mkone