From: Patrick Mauritz <oxygene@studentenbude.ath.cx>
To: Petr Baudis <pasky@suse.cz>
Cc: git@vger.kernel.org
Subject: Re: [PATCHES] CURLDIR support, more usable cmd-rename.sh
Date: Mon, 19 Sep 2005 16:11:19 +0200 [thread overview]
Message-ID: <1127139079.781.9.camel@divert> (raw)
In-Reply-To: <20050919133731.GB2903@pasky.or.cz>
[-- Attachment #1: Type: text/plain, Size: 227 bytes --]
On Mon, 2005-09-19 at 15:37, Petr Baudis wrote:
> seems that they didn't quite get attached in the end. ;-)
oops :)
here they are
> Linus already did in <Pine.LNX.4.58.0509181829310.9106@g5.osdl.org>.
yay :)
patrick mauritz
[-- Attachment #2: patch-20050919-1-curl --]
[-- Type: text/x-patch, Size: 655 bytes --]
diff -ur git-core-0.99.7.orig//Makefile git-core-0.99.7/Makefile
--- git-core-0.99.7.orig//Makefile Mon Sep 19 12:43:04 2005
+++ git-core-0.99.7/Makefile Mon Sep 19 12:45:45 2005
@@ -42,7 +42,10 @@
GIT_VERSION = 0.99.7
-CFLAGS = -g -O2 -Wall
+CFLAGS = -g -O2
+ifdef CURLDIR
+CFLAGS+=-I$(CURLDIR)/include
+endif
ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
prefix = $(HOME)
@@ -261,7 +264,11 @@
git-ssh-pull: rsh.o fetch.o
git-ssh-push: rsh.o
+ifdef CURLDIR
+git-http-fetch: LIBS += -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
+else
git-http-fetch: LIBS += -lcurl
+endif
git-rev-list: LIBS += $(OPENSSL_LIBSSL)
init-db.o: init-db.c
[-- Attachment #3: patch-20050919-3-cmdrename --]
[-- Type: text/plain, Size: 294 bytes --]
--- cmd-rename.sh~ Mon Sep 19 12:53:40 2005
+++ git-core-0.99.7/cmd-rename.sh Mon Sep 19 12:53:58 2005
@@ -4,7 +4,9 @@
while read old new
do
rm -f "$d/$old"
+ if [ -x "$d/$new" ]; then
ln -s "$new" "$d/$old"
+ fi
done <<\EOF
git-add-script git-add
git-archimport-script git-archimport
next prev parent reply other threads:[~2005-09-19 14:10 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-19 11:14 [PATCHES] CURLDIR support, more usable cmd-rename.sh Patrick Mauritz
2005-09-19 13:37 ` Petr Baudis
2005-09-19 14:11 ` Patrick Mauritz [this message]
2005-09-19 14:37 ` Matthias Urlichs
2005-09-19 16:34 ` Junio C Hamano
2005-09-19 17:40 ` Patrick Mauritz
2005-09-20 6:25 ` Junio C Hamano
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=1127139079.781.9.camel@divert \
--to=oxygene@studentenbude.ath.cx \
--cc=git@vger.kernel.org \
--cc=pasky@suse.cz \
/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 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.