Skip to content

Commit 0a6fb9d

Browse files
committed
compatible with FreeBSD amd64 architecture
FreeBSD `uname -m` outputs `amd64`.
1 parent 5e5fcff commit 0a6fb9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mc/ZeroConf/ZeroConfExplicit64BitPlatform.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ZeroConfExplicit64BitPlatform >> generateArchitectureDetectionOn: aStream [
2626
aStream cr;
2727
<<== 'SEARCH FOR THE CORRESPONDING 64bit ARCHITECTURE';
2828
<< 'case "${ARCH}" in'; cr;
29-
<< ' x86*) ARCH="x86_64";;'; cr;
30-
<< ' *) OSNAME="UNKNOWN:${ARCH}"'; cr;
29+
<< ' x86*|amd64) ARCH="x86_64";;'; cr;
30+
<< ' *) OSNAME="UNKNOWN:${ARCH}"'; cr;
3131
<< 'esac'; cr
3232
]

0 commit comments

Comments
 (0)