aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2011-01-18 20:56:55 -0800
committerRob Pike <r@golang.org>2011-01-18 20:56:55 -0800
commit052ff45690fef2630c43cdde5ee91ba502f1370a (patch)
tree582bfe7c0c133dcdaa6274b122b7c9ba5fa455eb
parenteead5e8879b4a317f6019f04fb7c6eb40b1ba051 (diff)
downloadgo-052ff45690fef2630c43cdde5ee91ba502f1370a.tar.gz
go-052ff45690fef2630c43cdde5ee91ba502f1370a.zip
crypto/cipher: fix build (missing file in Makefile)
R=agl, adg CC=golang-dev https://golang.org/cl/4073041
-rw-r--r--src/pkg/crypto/cipher/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/crypto/cipher/Makefile b/src/pkg/crypto/cipher/Makefile
index d7e8a7a13a..8f61cf20b2 100644
--- a/src/pkg/crypto/cipher/Makefile
+++ b/src/pkg/crypto/cipher/Makefile
@@ -7,10 +7,11 @@ include ../../../Make.inc
TARG=crypto/cipher
GOFILES=\
cbc.go\
+ cfb.go\
cipher.go\
ctr.go\
io.go\
ocfb.go\
- cfb.go
+ ofb.go
include ../../../Make.pkg