From owner-freebsd-multimedia@freebsd.org Sun Oct 25 20:35:55 2015 Return-Path: Delivered-To: freebsd-multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F8DD8198 for ; Sun, 25 Oct 2015 20:35:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id EC7A61FCE for ; Sun, 25 Oct 2015 20:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E9B068197; Sun, 25 Oct 2015 20:35:54 +0000 (UTC) Delivered-To: multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E947A8196 for ; Sun, 25 Oct 2015 20:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D934A1FCD for ; Sun, 25 Oct 2015 20:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PKZsQJ019998 for ; Sun, 25 Oct 2015 20:35:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: maintainer-feedback requested: [Bug 204019] multimedia/ffmpeg: make install stops with an error "Unable to create and execute files in /tmp" Date: Sun, 25 Oct 2015 20:35:53 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 20:35:55 -0000 tommi.pernila@gmail.com has reassigned Bugzilla Automation 's request for maintainer-feedback to multimedia@FreeBSD.org: Bug 204019: multimedia/ffmpeg: make install stops with an error "Unable to create and execute files in /tmp" https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204019 --- Description --- After a make install the port multimedia/ffmpeg: stops with an error "Unabl= e to create and execute files in /tmp". Other ports compile without issues on the same system. Portmaster stops with the same error. My guess is that there is some bug in these lines from configure? Starting from line 3295: # set temporary file name : ${TMPDIR:=3D$TEMPDIR} : ${TMPDIR:=3D$TMP} : ${TMPDIR:=3D/tmp} if [ -n "$tempprefix" ] ; then mktemp(){ echo $tempprefix.${HOSTNAME}.${UID} } elif ! check_cmd mktemp -u XXXXXX; then # simple replacement for missing mktemp # NOT SAFE FOR GENERAL USE mktemp(){ echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$" } fi tmpfile(){ tmp=3D$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 && (set -C; exec > $tmp) 2>/dev/null || die "Unable to create temporary file in $TMPDIR." append TMPFILES $tmp eval $1=3D$tmp }=