diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-06-23 17:39:39 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-06-23 17:39:39 +0200 |
commit | 336a53ddbcfd9e8c5e2199a90f9abec54090c29f (patch) | |
tree | c14785909a2830465e2d82929751fdcdc75bfda4 /src/makefile.osx | |
parent | 4be2aba302a30812df6962c5ea3b81669ed630e9 (diff) |
fix makefiles and init.cpp after chainparams merge
- add missing chainparams.o to some makefiles
- remove a double-include of chainparams.h in init.cpp
Diffstat (limited to 'src/makefile.osx')
-rw-r--r-- | src/makefile.osx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index bef0ef3518..269460c1ba 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -104,7 +104,8 @@ OBJS= \ obj/bloom.o \ obj/noui.o \ obj/leveldb.o \ - obj/txdb.o + obj/txdb.o \ + obj/chainparams.o ifndef USE_UPNP override USE_UPNP = - |