aboutsummaryrefslogtreecommitdiff
path: root/src/lib/make.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-09-26 14:11:26 -0700
committerRuss Cox <rsc@golang.org>2008-09-26 14:11:26 -0700
commit6201a963f1ea19e1473dc13f4d5f397a9eac543a (patch)
tree26c67a72dec44faba761ffd9fac52a927ec58ffe /src/lib/make.bash
parent2662aad7b788cd0bda630d45f659dc12211adc8a (diff)
downloadgo-6201a963f1ea19e1473dc13f4d5f397a9eac543a.tar.xz
move src/syscall to src/lib/syscall.
enforce rule: all kernel data structures and constants go in syscall module. move things that should be in syscall out of net. make net a single package. R=r OCL=15985 CL=15994
Diffstat (limited to 'src/lib/make.bash')
-rwxr-xr-xsrc/lib/make.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/make.bash b/src/lib/make.bash
index 24f8c0e62d..c2037e0dc6 100755
--- a/src/lib/make.bash
+++ b/src/lib/make.bash
@@ -6,7 +6,7 @@
set -e
-for i in os math
+for i in syscall os math
do
echo; echo; echo %%%% making lib/$i %%%%; echo
cd $i