Skip to content

Commit

Permalink
Remove abspath from native Makefile
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mgreter authored and glebm committed May 27, 2019
1 parent 1edc51c commit a46a281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a46a281

Please sign in to comment.