Skip to content

Commit 35f2bb8

Browse files
Fix SED_INPLACE for Darwin (#1514)
Fix building of docs on Darwin (macOS)
1 parent bfdb0c0 commit 35f2bb8

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
@@ -18,7 +18,7 @@ SED_IS_GNU := $(shell sed --version 2>/dev/null | grep -q "GNU sed" && echo "yes
1818
ifeq ($(SED_IS_GNU),yes)
1919
SED_INPLACE := sed -i
2020
else ifeq ($(UNAME_S),Darwin)
21-
SED_INPLACE := sed -i''
21+
SED_INPLACE := sed -i ''
2222
else
2323
SED_INPLACE := sed -i
2424
endif

0 commit comments

Comments
 (0)