From a46a281c9f5f7cbc32cfa3abd866319766de1165 Mon Sep 17 00:00:00 2001 From: Marcel Greter Date: Sat, 25 May 2019 01:30:23 +0200 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52acc234a..0c874e2c3 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ else endif ifndef SASS_LIBSASS_PATH - SASS_LIBSASS_PATH = $(abspath $(CURDIR)) + SASS_LIBSASS_PATH = $(CURDIR) endif ifdef SASS_LIBSASS_PATH CFLAGS += -I $(SASS_LIBSASS_PATH)/include