Skip to content

Commit 9df59f0

Browse files
committed
Merge pull request YosysHQ#110 from scanlime/master
Trivial changes to fix Mac OS build
2 parents 494e5f2 + 7948156 commit 9df59f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ifeq (Darwin,$(findstring Darwin,$(shell uname)))
5454
LDFLAGS += $(shell PKG_CONFIG_PATH=$$(brew list libffi | grep pkgconfig | xargs dirname) pkg-config --silence-errors --libs libffi)
5555
# use bison installed by homebrew if available
5656
BISON = $(shell (brew list bison | grep -m1 "bin/bison") || echo bison)
57-
SED = gsed
57+
SED = sed
5858
else
5959
LDFLAGS += -rdynamic
6060
LDLIBS += -lrt

manual/clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs -r rm -f,;" $f; done | bash -v
2+
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v

0 commit comments

Comments
 (0)