From 35f36b97fb44fc135085eec934d7110f8b5cd9b9 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Wed, 30 Sep 2015 13:50:12 -0700 Subject: [PATCH] use install -t instead of make install for sassc --- contrib/setup-sassc.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/setup-sassc.sh b/contrib/setup-sassc.sh index 274400aa8..4c61cce66 100755 --- a/contrib/setup-sassc.sh +++ b/contrib/setup-sassc.sh @@ -3,14 +3,19 @@ set -e cd /tmp +# cleanup previously downloaded and unpacked files. rm -rf libsass rm -rf sassc +# download the latest build of sassc git clone --depth=1 git://github.com/sass/libsass.git git clone --depth=1 git://github.com/sass/sassc.git export SASS_LIBSASS_PATH=/tmp/libsass +# build the sassc binary cd sassc make -sudo make install \ No newline at end of file + +# isntall the sassc binary +sudo install -t /usr/local/bin bin/sassc