Skip to content

Commit 7ec82c7

Browse files
committed
test.yml: try to use gnu grep on mac - 4
1 parent 0bb653a commit 7ec82c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ SOURCES_UTIL := $(wildcard *.cc)
1111
OBJS_UTIL := $(patsubst %.cc,%.o,$(SOURCES_UTIL))
1212
UNAME := $(shell uname -o)
1313
ifeq ($(UNAME),Darwin)
14-
GREP = grep
15-
else
1614
GREP = ggrep
15+
else
16+
GREP = grep
1717
endif
1818
PKG_ADD := $(shell $(GREP) -Pho '(?<=// PKG_ADD: ).*' $(SOURCES))
1919

0 commit comments

Comments
 (0)