All of lore.kernel.org
 help / color / mirror / Atom feed
* [uml-devel] small patch for small install problem of uml_utilities
@ 2008-03-19 19:41 Christian Krause
  2008-03-31 14:40 ` Jeff Dike
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Krause @ 2008-03-19 19:41 UTC (permalink / raw)
  To: user-mode-linux-devel

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-31 14:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-19 19:41 [uml-devel] small patch for small install problem of uml_utilities Christian Krause
2008-03-31 14:40 ` Jeff Dike

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.