Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Chung <mchung@gmail.com>2012-01-24 23:37:57 +0400
committerMarc Chung <mchung@gmail.com>2012-01-24 23:37:57 +0400
commit54f04d3b13a1103a1e45e5ad2290cd55fe96ffea (patch)
tree524b435de32ca3588937fe18e3abc5a7381700ce /Makefile
parent91780529d5f355054d17420f56a6b11e2d40b2a9 (diff)
Fixed typo in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 05ac491684..f4324e5665 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; \