Skip to content

Commit 1afe5ca

Browse files
committed
Fix coupling with sassc makefile
SassC was previously linking to the local shared library which was not what we wanted when the library was used in a system install (since removing the build directory would result in the linked library not being found anymore).
1 parent 11a9862 commit 1afe5ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ install-shared: $(DESTDIR)$(PREFIX)/lib/libsass.so \
299299
install-headers
300300

301301
$(SASSC_BIN): $(BUILD)
302-
$(MAKE) -C $(SASS_SASSC_PATH)
302+
$(MAKE) -C $(SASS_SASSC_PATH) build-$(BUILD)-dev
303303

304304
sassc: $(SASSC_BIN)
305305
$(SASSC_BIN) -v

0 commit comments

Comments
 (0)