diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 14:25:13 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 14:25:13 +0000 |
commit | ef49eaca3215ec379ed58260e08e3595e1487d0a (patch) | |
tree | 1d640df5ff4895cb639e7198f6d9a8a5d45a4242 /Mk/bsd.port.mk | |
parent | 2e3c15fee7e442fee19e1d0b96c6fbbc1c33ec94 (diff) | |
download | ports-ef49eaca3215ec379ed58260e08e3595e1487d0a.tar.gz ports-ef49eaca3215ec379ed58260e08e3595e1487d0a.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index a209e5b7713d..005d52f2b35a 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -6045,11 +6045,10 @@ config: pre-config ${MKDIR} $${optionsdir} 2> /dev/null) || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1) .endif - TMPOPTIONSFILE=$$(mktemp -t portoptions); \ + @TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ ${SH} -c '${DIALOG} --checklist "Options for ${PKGNAME:C/-([^-]+)$/ \1/}" 21 70 15 ${DEFOPTIONS}' 2> $${TMPOPTIONSFILE}; \ status=$$?; \ - echo $$status; \ if [ $${status} -ne 0 ]; then \ ${RM} -f $${TMPOPTIONSFILE}; \ ${ECHO_MSG} "===> Options unchanged"; \ |