diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /x11-wm/fvwm95-i18n | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (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=27680
Diffstat (limited to 'x11-wm/fvwm95-i18n')
-rw-r--r-- | x11-wm/fvwm95-i18n/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-wm/fvwm95-i18n/Makefile b/x11-wm/fvwm95-i18n/Makefile index f08d33ffbeba..2bcbdf4a0742 100644 --- a/x11-wm/fvwm95-i18n/Makefile +++ b/x11-wm/fvwm95-i18n/Makefile @@ -50,12 +50,12 @@ post-extract: ${CP} ${WRKDIR}/apmpatch/freebsd-menu.xpm ${WRKSRC}/mini-icons pre-patch: -.if !defined(BATCH) && !defined(FOR_CDROM) && !defined(USE_APM) +.if !defined(BATCH) && !defined(FOR_CDROM) && !defined(WITH_APM) @${ECHO} -n "Are you going to use APM handling? (y/n) ==> " @(read ans; \ case x"$$ans" in \ xy*|xY*) \ - ${ECHO} "Okay, please rerun make like as \"make USE_APM=yes\"."; \ + ${ECHO} "Okay, please rerun make like as \"make WITH_APM=yes\"."; \ ${ECHO} "(Don't worry about the following \"*** Error code 1\"s)"; \ return 1; \ ;; \ @@ -65,7 +65,7 @@ pre-patch: esac) .endif post-patch: -.if defined(USE_APM) +.if defined(WITH_APM) @${CAT} ${WRKDIR}/apmpatch/fvwm95-2.0.43a-Autoconf.I18N.apmpatch \ | ${PATCH} -d ${WRKSRC} .endif |