aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2011-11-02 10:13:58 -0700
committerJacob Thornton <[email protected]>2011-11-02 10:13:58 -0700
commitf285048b34a43c4feda9235e6cbb3b334159c2b8 (patch)
tree5f28f7cd2a6614d4f71abc7342df157d134397d4
parentd3b8a96589ab6dd70fad89413e04c09008c7c133 (diff)
parent09743c89961d84e00bcd879661716ba2f34fe097 (diff)
downloadbootstrap-f285048b34a43c4feda9235e6cbb3b334159c2b8.tar.xz
bootstrap-f285048b34a43c4feda9235e6cbb3b334159c2b8.zip
Merge pull request #525 from mchung/patch-1
Fixed typo in Makefile
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2979b3d53..d3cb05a50 100644
--- a/Makefile
+++ b/Makefile
@@ -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; \