[pacman-dev] [PATCH] Mac OS X Full path of sed
Please resend both of these patches as separate emails- git tools are meant to have one patch per email, whether using format-patch or am.
Sure thing. I'm new to git. Change configure.ac to use the full path of stat when on darwin/mac. This is needed for situations when a user installs the GNU/coreutils and places it in their path before /usr/bin, but the SIZECMD is already configured for Darwin's version of stat. Signed-off-by: Kevin Barry <barryk gmail com> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 2e7f433..216cf76 100644 --- a/configure.ac +++ b/configure.ac @@ -190,7 +190,7 @@ case "${host_os}" in ;; darwin*) host_os_darwin=yes - SIZECMD="stat -f %z" + SIZECMD="/usr/bin/stat -f %z" ;; esac -- 1.6.1.2
On Sun, Feb 15, 2009 at 6:47 PM, Kevin Barry <barryk@gmail.com> wrote:
Please resend both of these patches as separate emails- git tools are meant to have one patch per email, whether using format-patch or am.
Sure thing. I'm new to git.
Applied, thanks. The 'submitting-patches' file should explain some of the stuff in more detail when it comes to git patches. One thing that may be helpful- anything in the body of the email will end up in the commit log message, so if you have something that shouldn't go there, put it below the '---' right after the Signed-off-by line. This text will be dropped when the patch actually gets applied. -Dan
On Mon, Feb 16, 2009 at 3:04 AM, Dan McGee <dpmcgee@gmail.com> wrote:
On Sun, Feb 15, 2009 at 6:47 PM, Kevin Barry <barryk@gmail.com> wrote:
Please resend both of these patches as separate emails- git tools are meant to have one patch per email, whether using format-patch or am.
Sure thing. I'm new to git.
Applied, thanks. The 'submitting-patches' file should explain some of the stuff in more detail when it comes to git patches. One thing that may be helpful- anything in the body of the email will end up in the commit log message, so if you have something that shouldn't go there, put it below the '---' right after the Signed-off-by line. This text will be dropped when the patch actually gets applied.
echo Mac OS X Full path of sed | sed s/sed/stat/
participants (3)
-
Dan McGee
-
Kevin Barry
-
Xavier