I've been trying to install libsass on my dev machine to use sassc
, but I'm not having any success. Most of the tutorials that I have found are from earlier this year and don't seem to work (for me) (e.g install libsass ubuntuask ubuntu
This issue for me seems to be running the make file from the sassc directory.
nizzok@nizzok-ThinkPad-X201:~/sassc$ make
make BUILD="static" -C /home/nizzok/libsass
make[1]: Entering directory '/home/nizzok/libsass'
mkdir lib
mkdir: cannot create directory ‘lib’: Permission denied
Makefile:227: recipe for target 'lib' failed
make[1]: *** [lib] Error 1
make[1]: Leaving directory '/home/nizzok/libsass'
Makefile:212: recipe for target 'libsass-static' failed
make: *** [libsass-static] Error 2
nizzok@nizzok-ThinkPad-X201:~/sassc$ sudo make
make BUILD="static" -C /home/nizzok
make[1]: Entering directory '/home/nizzok'
make[1]: *** No targets specified and no makefile found. Stop.
make[1]: Leaving directory '/home/nizzok'
Makefile:212: recipe for target 'libsass-static' failed
make: *** [libsass-static] Error 2
So, are there more to date instructions? or any idea what's causing these errors?
sassc
to compile withmake
until I used their layout withsassc
andsass-spec
cloned as subdirs into thelibsass
directory (e.g.libsass/sassc
,libsass/sass-spec
. – Greg K Jul 22 '17 at 20:32