I personally found it fine to use a general Lisp book with Clojure in order to help you understand the general principles (bottom up design, macros, functional programming in Lisp, the concept of the reader etc.). I've used both SICP and On Lisp in this way.
On the other hand, you clearly need a Clojure-specific book / tutorial if you want to master the specifics of Clojure, in particular:
- The Clojure syntax
- Clojure style (which is a bit more functional / lazy than most other Lisps)
- Special features of Clojure such as concurrency / STM capabilities
I've found online material and reading source code of well-written Clojure libraries to be generally fine for learning the Clojure-specific pieces.
Though of course none of this is a substitute for just firing up a REPL and writing some code..... :-)