diff options
author | Chris Rees <crees@FreeBSD.org> | 2013-05-04 12:44:35 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2013-05-04 12:44:35 +0000 |
commit | 7685842f89d53fe381ccaa8cdc44e8cfd31334fb (patch) | |
tree | 78832545a8d057628f76144f3ad0144bbe32e3e4 | |
parent | Use OPTIONS_SLAVE (diff) |
audio/mbrolavox: Error if no OPTION is selected
Notified by: bdrewery
Notes
Notes:
svn path=/head/; revision=317311
-rw-r--r-- | audio/mbrolavox/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/mbrolavox/Makefile b/audio/mbrolavox/Makefile index 23049f27d240..07db01489564 100644 --- a/audio/mbrolavox/Makefile +++ b/audio/mbrolavox/Makefile @@ -33,6 +33,10 @@ MYFILES+= ${FILE_${ii}} . endif .endfor +.if empty(DISTFILES) +IGNORE= requires that at least one OPTION is selected +.endif + do-extract: @${MKDIR} ${WRKSRC} .for ii in ${MYFILES} |