summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:18:05 +0000
commit877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch)
treee1a018208ceade04ca56a70c5184978cac51853e /emulators
parentReplace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27679
Diffstat (limited to 'emulators')
-rw-r--r--emulators/quasi88/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/quasi88/Makefile b/emulators/quasi88/Makefile
index a3f2e5bf073d..5ec5ae0caa91 100644
--- a/emulators/quasi88/Makefile
+++ b/emulators/quasi88/Makefile
@@ -19,14 +19,14 @@ USE_GMAKE= yes
DATAFILES= FAQ FORMAT GET-IMAGE HELP HISTORY LIST MANUAL QUASI88
pre-patch:
-.if !defined(USE_SOUND)
- @ ${ECHO} "You can make quasi88 use sound by defining USE_SOUND"
+.if !defined(WITH_SOUND)
+ @ ${ECHO} "You can make quasi88 use sound by defining WITH_SOUND"
.else
@ ${CP} ${FILESDIR}/patch-aa ${PATCHDIR}
.endif
post-patch:
-.if defined(USE_SOUND)
+.if defined(WITH_SOUND)
@ ${RM} ${PATCHDIR}/patch-aa
.endif