On Wed, Mar 19, 2008 at 08:41:59PM +0100, Christian Krause wrote:
> During packaging of uml_utilities I've found a small problem during
> "make install":
> - install -o 0755 $(BIN) $(DESTDIR)$(BIN_DIR)
> + install -m 0755 $(BIN) $(DESTDIR)$(BIN_DIR)
Looks right, thanks.
Hi,
During packaging of uml_utilities I've found a small problem during
"make install":
in tools-20070815/humsify/Makefile the binary is installed via
"install -o 0755 $(BIN) $(DESTDIR)$(BIN_DIR)".
It looks like that "-o" is just a typo and that the intention was to set
the mode with "-m 0755"