Skip to content

Commit 58f8777

Browse files
authored
Merge pull request #301 from xobs/noarch-openroad
misc/openlane: set openlane to be noarch
2 parents ffdb1c2 + 3f5f4b2 commit 58f8777

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

misc/openlane/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ set -ex
2020
UNAME_OUT="$(uname -s)"
2121
case "${UNAME_OUT}" in
2222
Linux*) OS=Linux;;
23+
Darwin*) OS=Mac;;
2324
*) OS="${UNAME_OUT}"
2425
echo "Unknown OS: ${OS}"
2526
exit;;
2627
esac
2728

2829
mkdir -p $PREFIX/share/
29-
cp -ar $SRC_DIR $PREFIX/share/openlane
30+
cp -a $SRC_DIR $PREFIX/share/openlane
3031
# define system and pdk variables
3132
mkdir -p $PREFIX/share/openlane/install
3233
echo $PKG_VERSION-conda > $PREFIX/share/openlane/install/installed_version

misc/openlane/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ source:
1313
- disable-version-check.patch # conda versions differ from openlane metadata
1414

1515
build:
16+
noarch: generic
1617
# number: 201803050325
1718
number: {{ environ.get('DATE_NUM') }}
1819
# string: 20180305_0325

0 commit comments

Comments
 (0)