From: Christian Krause <chkr@plauener.de>
To: user-mode-linux-devel@lists.sourceforge.net
Subject: [uml-devel] small patch for small install problem of uml_utilities
Date: Wed, 19 Mar 2008 20:41:59 +0100 [thread overview]
Message-ID: <47E16C87.8080705@plauener.de> (raw)
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
next reply other threads:[~2008-03-19 19:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-19 19:41 Christian Krause [this message]
2008-03-31 14:40 ` [uml-devel] small patch for small install problem of uml_utilities Jeff Dike
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47E16C87.8080705@plauener.de \
--to=chkr@plauener.de \
--cc=user-mode-linux-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox