Adventures in trying to compile Gens 2.14 on Ubuntu.
http://gens.me/downloads.shtml
Gens 2.14 source
http://gens.me/download/gens-win32-src-2.14.zip
After getting rid of carriage returns:
Trouble Compiling Sega Emulator Gens
https://ubuntuforums.org/showthread.php?t=82435
/debug/gens-debug.Po: No such file or directory
The .Po files are generated by config.status:
echo '# dummy' > "$dirpart/$file"
But shell redirects cannot create missing intermediate directories. config.status uses mkinstalldirs for this, but calls it directly without going through the shell, and since the linux source is in the win32 source zip rather than a tar, files will usually extract without executable permission. Doing a
chmod +x mkinstalldirs
will aalow sh configure to complete without .Po errors. Naturally, make errors follow.