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" and not the owner (with -o 0755, which makes no 
sense ;-) ).

Here is my patch I've used to fix the problem. Probably you can apply it 
to the official sources as well:

diff -uNr tools-20070815.orig/humfsify/Makefile 
tools-20070815/humfsify/Makefile
--- tools-20070815.orig/humfsify/Makefile       2006-05-25 
20:37:01.000000000 +0200
+++ tools-20070815/humfsify/Makefile    2008-03-19 20:29:50.000000000 +0100
@@ -4,7 +4,7 @@

 install:
        install -d $(DESTDIR)$(BIN_DIR)
-       install -o 0755 $(BIN) $(DESTDIR)$(BIN_DIR)
+       install -m 0755 $(BIN) $(DESTDIR)$(BIN_DIR)

 clean:
        rm -f *~


Thanks & Best regards,
Christian

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

Reply via email to