aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Chung <[email protected]>2011-11-02 00:38:44 -0700
committerMarc Chung <[email protected]>2011-11-02 00:38:44 -0700
commit09743c89961d84e00bcd879661716ba2f34fe097 (patch)
tree5f28f7cd2a6614d4f71abc7342df157d134397d4
parentd3b8a96589ab6dd70fad89413e04c09008c7c133 (diff)
downloadbootstrap-09743c89961d84e00bcd879661716ba2f34fe097.tar.xz
bootstrap-09743c89961d84e00bcd879661716ba2f34fe097.zip
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; \