From: Dennis Stosberg <dennis@stosberg.net>
To: Junio C Hamano <junkio@cox.net>
Cc: git@vger.kernel.org
Subject: [PATCH] Makefile fix for Solaris
Date: Tue, 27 Jun 2006 00:21:07 +0200 [thread overview]
Message-ID: <20060626222107.G1b760b67@leonov.stosberg.net> (raw)
In-Reply-To: <7vd5cvj1d0.fsf@assigned-by-dhcp.cox.net>
Solaris' /bin/sh does not support $( )-style command substitution
Signed-off-by: Dennis Stosberg <dennis@stosberg.net>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index a326f6e..f44fbd3 100644
--- a/Makefile
+++ b/Makefile
@@ -544,7 +544,7 @@ common-cmds.h: Documentation/git-*.txt
$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/Makefile
$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
rm -f $@ $@+
- INSTLIBDIR=$$(make -s -C perl instlibdir) && \
+ INSTLIBDIR=`make -s -C perl instlibdir` && \
sed -e '1s|#!.*perl\(.*\)|#!$(PERL_PATH_SQ)\1|' \
-e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
--
1.4.1.rc1.g80bff-dirty
next prev parent reply other threads:[~2006-06-26 22:21 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-25 1:47 [PATCH] Git.pm: Support for perl/ being built by a different compiler Petr Baudis
2006-06-25 3:14 ` Junio C Hamano
2006-06-25 15:27 ` Petr Baudis
2006-06-26 8:24 ` Dennis Stosberg
2006-06-26 8:26 ` [PATCH] Solaris needs inclusion of signal.h for signal() Dennis Stosberg
2006-06-26 8:27 ` [PATCH] Fix pkt-line.h to compile with a non-GCC compiler Dennis Stosberg
2006-06-26 8:27 ` [PATCH] "test" in Solaris' /bin/sh does not support -e Dennis Stosberg
2006-06-26 9:19 ` Junio C Hamano
2006-06-26 9:42 ` Dennis Stosberg
2006-06-26 10:04 ` Dennis Stosberg
2006-06-26 17:03 ` Junio C Hamano
2006-06-26 22:21 ` Dennis Stosberg [this message]
2006-06-26 22:23 ` [PATCH] Add possibility to pass CFLAGS and LDFLAGS specific to the perl subdir Dennis Stosberg
2006-07-01 22:59 ` Petr Baudis
2006-06-26 22:25 ` [PATCH] "test" in Solaris' /bin/sh does not support -e Dennis Stosberg
2006-06-26 8:29 ` [PATCH] Git.pm: Support for perl/ being built by a different compiler Dennis Stosberg
2006-06-26 8:51 ` Thomas Glanzmann
2006-06-26 9:26 ` Junio C Hamano
2006-06-26 9:32 ` Dennis Stosberg
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=20060626222107.G1b760b67@leonov.stosberg.net \
--to=dennis@stosberg.net \
--cc=git@vger.kernel.org \
--cc=junkio@cox.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;
as well as URLs for NNTP newsgroup(s).