diff options
| author | Jacob Thornton <[email protected]> | 2011-11-02 10:13:58 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-11-02 10:13:58 -0700 |
| commit | f285048b34a43c4feda9235e6cbb3b334159c2b8 (patch) | |
| tree | 5f28f7cd2a6614d4f71abc7342df157d134397d4 | |
| parent | d3b8a96589ab6dd70fad89413e04c09008c7c133 (diff) | |
| parent | 09743c89961d84e00bcd879661716ba2f34fe097 (diff) | |
| download | bootstrap-f285048b34a43c4feda9235e6cbb3b334159c2b8.tar.xz bootstrap-f285048b34a43c4feda9235e6cbb3b334159c2b8.zip | |
Merge pull request #525 from mchung/patch-1
Fixed typo in Makefile
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,11 +3,11 @@ DATE=$(shell DATE) BOOTSTRAP = ./bootstrap.css BOOTSTRAP_MIN = ./bootstrap.min.css BOOTSTRAP_LESS = ./lib/bootstrap.less -LESS_COMPESSOR ?= `which lessc` +LESS_COMPRESSOR ?= `which lessc` WATCHR ?= `which watchr` build: - @@if test ! -z ${LESS_COMPESSOR}; then \ + @@if test ! -z ${LESS_COMPRESSOR}; then \ sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"${DATE}"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \ lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \ lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP_MIN} --compress; \ |
