Hi again, A very similar error occurs at line 956 of debian/rules: "ln -sf ../bin/$(PVER)-gdb.py \ $(d_dbg)/usr/lib/debug/usr/lib/lib$(PVER).so.1.0-gdb.py"
Where the directory $(d_dbg)/usr/lib/debug/usr/lib/ does not exist prior to the execution of this line. A replacement of this line with the block: if [ -d $(d_dbg)/usr/lib/debug/usr/lib/ ]; then \ echo "$(d_dbg)/usr/lib/debug/usr/lib/ exists"; \ else \ mkdir -p $(d_dbg)/usr/lib/debug/usr/lib/; \ fi ln -sf ../bin/$(PVER)-gdb.py \ $(d_dbg)/usr/lib/debug/usr/lib/lib$(PVER).so.1.0-gdb.py solves the issue. Thanks, Lee. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org