Skip to content

Commit 7014f55

Browse files
committed
Merge pull request sass#1369 from saper/nodl
No -ldl for FreeBSD
2 parents e764b04 + 5e9437b commit 7014f55

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ ifeq ($(UNAME),Darwin)
118118
endif
119119

120120
ifneq (MinGW,$(UNAME))
121-
LDFLAGS += -ldl
122-
LDLIBS += -ldl
121+
ifneq (FreeBSD,$(UNAME))
122+
LDFLAGS += -ldl
123+
LDLIBS += -ldl
124+
endif
123125
endif
124126

125127
ifneq ($(BUILD),shared)

0 commit comments

Comments
 (0)