Currently, the Makefile ignores DESTDIR, making it impossible to use make to install this package in a distro setting without extra configuration. Instead, we have to do install -Dm755 compsize $DESTDIR$PREFIX/bin/compsize or run make install PREFIX=$DESTDIR$PREFIX which is unwieldly either way. Some distro build systems have the standard make commands baked in, and having to override the defaults is cumbersome
Currently, the Makefile ignores DESTDIR, making it impossible to use make to install this package in a distro setting without extra configuration. Instead, we have to do
install -Dm755 compsize $DESTDIR$PREFIX/bin/compsize
or runmake install PREFIX=$DESTDIR$PREFIX
which is unwieldly either way. Some distro build systems have the standard make commands baked in, and having to override the defaults is cumbersome