From: Marc Chung Date: Wed, 2 Nov 2011 07:38:44 +0000 (-0700) Subject: Fixed typo in Makefile X-Git-Tag: v1.4.0~2^2^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09743c89961d84e00bcd879661716ba2f34fe097;p=thirdparty%2Fbootstrap.git Fixed typo in Makefile --- diff --git a/Makefile b/Makefile index 2979b3d531..d3cb05a50e 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; \