summaryrefslogtreecommitdiff
path: root/src/cmd/6l/Makefile
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-06-12 13:26:16 -0700
committerRob Pike <r@golang.org>2008-06-12 13:26:16 -0700
commitc348f82e29356fc95dcb6331b4860b2d76fa07aa (patch)
treef571b5448e5f72870de933c01d9a6dcf04879e85 /src/cmd/6l/Makefile
parent4732d2a3518bda35334461950464d2dffcd008b2 (diff)
downloadgo-c348f82e29356fc95dcb6331b4860b2d76fa07aa.tar.gz
import the plan 9 libraries libc (lib9) and libbio into the tree.
remove the dependency on /home/r. SVN=122482
Diffstat (limited to 'src/cmd/6l/Makefile')
-rw-r--r--src/cmd/6l/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/6l/Makefile b/src/cmd/6l/Makefile
index 7c15012a0..e87efafc9 100644
--- a/src/cmd/6l/Makefile
+++ b/src/cmd/6l/Makefile
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
-CFLAGS=-I/home/r/plan9/include -I$(GOROOT)/include
+CFLAGS=-I$(GOROOT)/include
BIN=$(HOME)/bin
O=o
@@ -25,7 +25,7 @@ HFILES=\
$(TARG): $(OFILES)
- cc -o $(TARG) -L/home/r/plan9/lib $(OFILES) -lbio -l9
+ cc -o $(TARG) -L$(GOROOT)/lib $(OFILES) -lbio -l9
$(OFILES): $(HFILES)