Codebase list pnm2ppa / 07303af
Replace deprecated and dropped Debian util tempfile The deprecated Debian util tempfile was droped after Debian 11. Replace tempfile with mktemp as recommanded. Signed-off-by: Benedikt Spranger <b.spranger@linutronix.de> Closes: #993621 Benedikt Spranger authored 1 year, 8 months ago Didier Raboud committed 1 year, 8 months ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
3030 # VERY simple sed replacement
3131 if [ -f ${CONFSRC} ] ; then
3232 db_get pnm2ppa/printer_model
33 TEMPFILE=`tempfile`
33 TEMPFILE=`mktemp --tmpdir pnm2ppa.XXXXXXXXXX`
3434 # Replace everything following "version " w/model
3535 sed -e "s,^\(version \).*$,\1 ${RET}," ${CONFSRC} > \
3636 ${TEMPFILE}