Closed AdrianVovk closed 3 years ago
I'm building compsize on my distro's build system, and I got this error:
/bin/sh: line 1: /buildstream-install/usr/share/man/man8/compsize.8.gz: No such file or directory
The makefile doesn't ensure that the directory exists before trying to make a file in it. Ideally it should do that
Workaround: I just ran mkdir before make install
mkdir
make install
I'm building compsize on my distro's build system, and I got this error:
The makefile doesn't ensure that the directory exists before trying to make a file in it. Ideally it should do that
Workaround: I just ran
mkdir
beforemake install