diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /emulators | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.zip |
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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/quasi88/Makefile | 6 |
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 |