sass / sassc

libsass command line driver
Other
784 stars 131 forks source link

Makefile:222: recipe for target 'libsass-static' failed #268

Closed SidorovD closed 8 months ago

SidorovD commented 4 years ago

I had an issue with building sassc via Makefile. I had a clean install (neither libsass nor sass-spec was preinstalled).

My installation proccess:

$ cd projects/
$ git clone https://github.com/sass/sassc.git
$ cd sassc
$ ./script/bootstrap
$ make

What i got:

make BUILD="static" -C /home/sinclaire/projects
make[1]: Entering directory '/home/sinclaire/projects'
make[1]: *** No targets specified and no makefile found.  Stop.
make[1]: Leaving directory '/home/sinclaire/projects'
Makefile:222: recipe for target 'libsass-static' failed
make: *** [libsass-static] Error 2

This PR fixes it.

mgreter commented 8 months ago

Correct calls according to documentation are:

$ git clone https://github.com/sass/sassc.git
$ . sassc/script/bootstrap
$ make -C sassc -j4

Seem to work on my side !?