diff options
author | asami <asami@FreeBSD.org> | 1997-12-23 15:15:20 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-12-23 15:15:20 +0800 |
commit | 2c183475941bac7f66348aa2b9898895024b652a (patch) | |
tree | 265d6d1c831e0a2e5819221a3a582c4e7a37c5e0 | |
parent | 885a40a1199e8d583d635297bb23e79125aab6e6 (diff) | |
download | freebsd-ports-gnome-2c183475941bac7f66348aa2b9898895024b652a.tar.gz freebsd-ports-gnome-2c183475941bac7f66348aa2b9898895024b652a.tar.zst freebsd-ports-gnome-2c183475941bac7f66348aa2b9898895024b652a.zip |
No need to use += on first appearance of variables.
-rw-r--r-- | emulators/bochs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index 6497c4e22c11..cdf2885960fd 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -3,7 +3,7 @@ # Date created: 16 December 1997 # Whom: alex # -# $Id: Makefile,v 1.1.1.1 1997/12/18 03:47:32 alex Exp $ +# $Id: Makefile,v 1.2 1997/12/21 14:34:55 alex Exp $ # VGABIOS= VGABIOS-elpin-2.00A @@ -17,7 +17,7 @@ MASTER_SITES= ftp://ftp.std.com/pub/bochs/ MAINTAINER= alex@FreeBSD.ORG GNU_CONFIGURE= YES -CONFIGURE_ARGS+=--enable-80386 --enable-debugger --enable-memory=16 \ +CONFIGURE_ARGS= --enable-80386 --enable-debugger --enable-memory=16 \ --enable-v8086-mode --enable-paging --enable-vga \ --enable-bochs-bios-hooks --enable-dma-floppy-io \ --enable-processor-ips=200000 |