aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-24 19:49:39 -0800
committerMark Otto <[email protected]>2012-01-24 19:49:39 -0800
commitda1906b0373d621a46fdb9e6d2693477e92d9730 (patch)
treec52f5ad09a29b34e5231b76704943a8f7c8a8b6e
parentbacb05608f2d42ef7fdb6fa25241d4268b989387 (diff)
parent54f04d3b13a1103a1e45e5ad2290cd55fe96ffea (diff)
downloadbootstrap-da1906b0373d621a46fdb9e6d2693477e92d9730.tar.xz
bootstrap-da1906b0373d621a46fdb9e6d2693477e92d9730.zip
Merge pull request #1140 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 05ac49168..f4324e566 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ VERSION=2.0.0
BOOTSTRAP = ./bootstrap.css
BOOTSTRAP_MIN = ./bootstrap.min.css
BOOTSTRAP_LESS = ./lib/bootstrap.less
-LESS_COMPESSOR ?= `which lessc`
+LESS_COMPRESSOR ?= `which lessc`
UGLIFY_JS ?= `which uglifyjs`
WATCHR ?= `which watchr`
@@ -11,7 +11,7 @@ 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; \