Skip to content

Commit a46a281

Browse files
mgreterglebm
authored andcommitted
Remove abspath from native Makefile
It does not seem extremely portable, since it has some issues at least on windows gmake. It does not recognize windows absolute path with drive letters (e.g. D:\foo). https://stackoverflow.com/questions/21288101
1 parent 1edc51c commit a46a281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ else
7474
endif
7575

7676
ifndef SASS_LIBSASS_PATH
77-
SASS_LIBSASS_PATH = $(abspath $(CURDIR))
77+
SASS_LIBSASS_PATH = $(CURDIR)
7878
endif
7979
ifdef SASS_LIBSASS_PATH
8080
CFLAGS += -I $(SASS_LIBSASS_PATH)/include

0 commit comments

Comments
 (0)