diff options
author | Max Khon <fjoe@FreeBSD.org> | 2006-03-08 16:58:58 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2006-03-08 16:58:58 +0000 |
commit | b6247c61964f6beb543fcf71f961bdd07e7ba87a (patch) | |
tree | 68a084ba70493a2aaab949d92ebc6b4b170cee6f /emulators/dynamips | |
parent | de95d18b5c4456b8757087933ee1dc81c1a6d484 (diff) | |
download | ports-b6247c61964f6beb543fcf71f961bdd07e7ba87a.tar.gz ports-b6247c61964f6beb543fcf71f961bdd07e7ba87a.zip |
Forgotten fix from previous commit:
Turn off JIT on amd64 (does not work for some reason).
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=157044
Diffstat (limited to 'emulators/dynamips')
-rw-r--r-- | emulators/dynamips/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/dynamips/Makefile b/emulators/dynamips/Makefile index 94273055cecc..a06d8e811052 100644 --- a/emulators/dynamips/Makefile +++ b/emulators/dynamips/Makefile @@ -39,7 +39,7 @@ do-install: .if ${ARCH} == "i386" DYNAMIPS_ARCH= "x86" .elif ${ARCH} == "amd64" -DYNAMIPS_ARCH= "amd64" +DYNAMIPS_ARCH= "nojit" # JIT does not work on amd64 for some reason .else DYNAMIPS_ARCH= "nojit" .endif |