From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/releng:master commit in: tools-uclibc/
Date: Sun, 3 Feb 2013 14:46:14 +0000 (UTC) [thread overview]
Message-ID: <1359902747.31a49370f5dafd4e3d16026fbce14fdb7f170531.blueness@gentoo> (raw)
commit: 31a49370f5dafd4e3d16026fbce14fdb7f170531
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 3 14:45:30 2013 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Feb 3 14:45:47 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=31a49370
tools-uclibc: make MyCatalyst = $(pwd)
---
tools-uclibc/run-armv7a.sh | 3 ++-
tools-uclibc/run-mips32r2.sh | 3 ++-
tools-uclibc/run.sh | 3 ++-
.../stage1-amd64-uclibc-hardened.conf.template | 2 +-
.../stage1-amd64-uclibc-vanilla.conf.template | 2 +-
.../stage1-armv7a-uclibc-hardened.conf.template | 2 +-
.../stage1-armv7a-uclibc-vanilla.conf.template | 2 +-
.../stage1-i686-uclibc-hardened.conf.template | 2 +-
.../stage1-i686-uclibc-vanilla.conf.template | 2 +-
.../stage1-mips32r2-uclibc-hardened.conf.template | 2 +-
.../stage1-mips32r2-uclibc-vanilla.conf.template | 2 +-
.../stage2-amd64-uclibc-hardened.conf.template | 2 +-
.../stage2-amd64-uclibc-vanilla.conf.template | 2 +-
.../stage2-armv7a-uclibc-hardened.conf.template | 2 +-
.../stage2-armv7a-uclibc-vanilla.conf.template | 2 +-
.../stage2-i686-uclibc-hardened.conf.template | 2 +-
.../stage2-i686-uclibc-vanilla.conf.template | 2 +-
.../stage2-mips32r2-uclibc-hardened.conf.template | 2 +-
.../stage2-mips32r2-uclibc-vanilla.conf.template | 2 +-
.../stage3-amd64-uclibc-hardened.conf.template | 2 +-
.../stage3-amd64-uclibc-vanilla.conf.template | 2 +-
.../stage3-armv7a-uclibc-hardened.conf.template | 2 +-
.../stage3-armv7a-uclibc-vanilla.conf.template | 2 +-
.../stage3-i686-uclibc-hardened.conf.template | 2 +-
.../stage3-i686-uclibc-vanilla.conf.template | 2 +-
.../stage3-mips32r2-uclibc-hardened.conf.template | 2 +-
.../stage3-mips32r2-uclibc-vanilla.conf.template | 2 +-
27 files changed, 30 insertions(+), 27 deletions(-)
diff --git a/tools-uclibc/run-armv7a.sh b/tools-uclibc/run-armv7a.sh
index d6d0a1b..8f4a730 100755
--- a/tools-uclibc/run-armv7a.sh
+++ b/tools-uclibc/run-armv7a.sh
@@ -17,7 +17,8 @@ prepare_confs() {
for s in 1 2 3; do
cat stage${s}-${arch}-uclibc-${flavor}.conf.template | \
- sed -e "s/\(^version_stamp.*$\)/\1-${mydate}/" > stage${s}-${arch}-uclibc-${flavor}.conf
+ sed -e "s:\(^version_stamp.*$\):\1-${mydate}:" \
+ -e "s:MyCatalyst:$(pwd):" > stage${s}-${arch}-uclibc-${flavor}.conf
done
}
diff --git a/tools-uclibc/run-mips32r2.sh b/tools-uclibc/run-mips32r2.sh
index cf2e9a2..4113b21 100755
--- a/tools-uclibc/run-mips32r2.sh
+++ b/tools-uclibc/run-mips32r2.sh
@@ -17,7 +17,8 @@ prepare_confs() {
for s in 1 2 3; do
cat stage${s}-${arch}-uclibc-${flavor}.conf.template | \
- sed -e "s/\(^version_stamp.*$\)/\1-${mydate}/" > stage${s}-${arch}-uclibc-${flavor}.conf
+ sed -e "s:\(^version_stamp.*$\):\1-${mydate}:" \
+ -e "s:MyCatalyst:$(pwd):" > stage${s}-${arch}-uclibc-${flavor}.conf
done
}
diff --git a/tools-uclibc/run.sh b/tools-uclibc/run.sh
index 7f3f61b..e45f7df 100755
--- a/tools-uclibc/run.sh
+++ b/tools-uclibc/run.sh
@@ -23,7 +23,8 @@ prepare_confs() {
for s in 1 2 3; do
cat stage${s}-${arch}-uclibc-${flavor}.conf.template | \
- sed -e "s/\(^version_stamp.*$\)/\1-${mydate}/" > stage${s}-${arch}-uclibc-${flavor}.conf
+ sed -e "s:\(^version_stamp.*$\):\1-${mydate}:" \
+ -e "s:MyCatalyst:$(pwd):" > stage${s}-${arch}-uclibc-${flavor}.conf
done
}
diff --git a/tools-uclibc/stage1-amd64-uclibc-hardened.conf.template b/tools-uclibc/stage1-amd64-uclibc-hardened.conf.template
index a3c2def..accca1e 100644
--- a/tools-uclibc/stage1-amd64-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage1-amd64-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: hardened/amd64/stage3-amd64-uclibc-hardened
chost: x86_64-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.amd64.hardened
+portage_confdir: MyCatalyst/portage.amd64.hardened
diff --git a/tools-uclibc/stage1-amd64-uclibc-vanilla.conf.template b/tools-uclibc/stage1-amd64-uclibc-vanilla.conf.template
index cafd823..4bfc2c7 100644
--- a/tools-uclibc/stage1-amd64-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage1-amd64-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: vanilla/amd64/stage3-amd64-uclibc-vanilla
chost: x86_64-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.amd64.vanilla
+portage_confdir: MyCatalyst/portage.amd64.vanilla
diff --git a/tools-uclibc/stage1-armv7a-uclibc-hardened.conf.template b/tools-uclibc/stage1-armv7a-uclibc-hardened.conf.template
index d3f9e59..78f6d9c 100644
--- a/tools-uclibc/stage1-armv7a-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage1-armv7a-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: hardened/armv7a/stage3-armv7a-uclibc-hardened
chost: armv7a-softfp-linux-uclibceabi
-portage_confdir: /root/MyCatalyst/portage.arm.hardened
+portage_confdir: MyCatalyst/portage.arm.hardened
diff --git a/tools-uclibc/stage1-armv7a-uclibc-vanilla.conf.template b/tools-uclibc/stage1-armv7a-uclibc-vanilla.conf.template
index 3d60855..d523a21 100644
--- a/tools-uclibc/stage1-armv7a-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage1-armv7a-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: vanilla/armv7a/stage3-armv7a-uclibc-vanilla
chost: armv7a-softfp-linux-uclibceabi
-portage_confdir: /root/MyCatalyst/portage.arm.vanilla
+portage_confdir: MyCatalyst/portage.arm.vanilla
diff --git a/tools-uclibc/stage1-i686-uclibc-hardened.conf.template b/tools-uclibc/stage1-i686-uclibc-hardened.conf.template
index 9752148..97941d6 100644
--- a/tools-uclibc/stage1-i686-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage1-i686-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: hardened/i686/stage3-i686-uclibc-hardened
chost: i686-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.i686.hardened
+portage_confdir: MyCatalyst/portage.i686.hardened
diff --git a/tools-uclibc/stage1-i686-uclibc-vanilla.conf.template b/tools-uclibc/stage1-i686-uclibc-vanilla.conf.template
index 4f45e84..4e60c07 100644
--- a/tools-uclibc/stage1-i686-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage1-i686-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: vanilla/i686/stage3-i686-uclibc-vanilla
chost: i686-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.i686.vanilla
+portage_confdir: MyCatalyst/portage.i686.vanilla
diff --git a/tools-uclibc/stage1-mips32r2-uclibc-hardened.conf.template b/tools-uclibc/stage1-mips32r2-uclibc-hardened.conf.template
index b6da45b..588a674 100644
--- a/tools-uclibc/stage1-mips32r2-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage1-mips32r2-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: hardened/mips32r2/stage3-mips32r2-uclibc-hardened
chost: mips-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.mips.hardened
+portage_confdir: MyCatalyst/portage.mips.hardened
diff --git a/tools-uclibc/stage1-mips32r2-uclibc-vanilla.conf.template b/tools-uclibc/stage1-mips32r2-uclibc-vanilla.conf.template
index 8322d0b..8e4b6ec 100644
--- a/tools-uclibc/stage1-mips32r2-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage1-mips32r2-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: vanilla/mips32r2/stage3-mips32r2-uclibc-vanilla
chost: mips-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.mips.vanilla
+portage_confdir: MyCatalyst/portage.mips.vanilla
diff --git a/tools-uclibc/stage2-amd64-uclibc-hardened.conf.template b/tools-uclibc/stage2-amd64-uclibc-hardened.conf.template
index 5ba6182..82b721f 100644
--- a/tools-uclibc/stage2-amd64-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage2-amd64-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: hardened/amd64/stage1-amd64-uclibc-hardened
chost: x86_64-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.amd64.hardened
+portage_confdir: MyCatalyst/portage.amd64.hardened
diff --git a/tools-uclibc/stage2-amd64-uclibc-vanilla.conf.template b/tools-uclibc/stage2-amd64-uclibc-vanilla.conf.template
index 955a31b..71fb47a 100644
--- a/tools-uclibc/stage2-amd64-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage2-amd64-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: vanilla/amd64/stage1-amd64-uclibc-vanilla
chost: x86_64-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.amd64.vanilla
+portage_confdir: MyCatalyst/portage.amd64.vanilla
diff --git a/tools-uclibc/stage2-armv7a-uclibc-hardened.conf.template b/tools-uclibc/stage2-armv7a-uclibc-hardened.conf.template
index 1cb8d90..251739b 100644
--- a/tools-uclibc/stage2-armv7a-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage2-armv7a-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: hardened/armv7a/stage1-armv7a-uclibc-hardened
chost: armv7a-softfp-linux-uclibceabi
-portage_confdir: /root/MyCatalyst/portage.arm.hardened
+portage_confdir: MyCatalyst/portage.arm.hardened
diff --git a/tools-uclibc/stage2-armv7a-uclibc-vanilla.conf.template b/tools-uclibc/stage2-armv7a-uclibc-vanilla.conf.template
index 7f98c5a..38a05bd 100644
--- a/tools-uclibc/stage2-armv7a-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage2-armv7a-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: vanilla/armv7a/stage1-armv7a-uclibc-vanilla
chost: armv7a-softfp-linux-uclibceabi
-portage_confdir: /root/MyCatalyst/portage.arm.vanilla
+portage_confdir: MyCatalyst/portage.arm.vanilla
diff --git a/tools-uclibc/stage2-i686-uclibc-hardened.conf.template b/tools-uclibc/stage2-i686-uclibc-hardened.conf.template
index 93f48b4..59b9acb 100644
--- a/tools-uclibc/stage2-i686-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage2-i686-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: hardened/i686/stage1-i686-uclibc-hardened
chost: i686-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.i686.hardened
+portage_confdir: MyCatalyst/portage.i686.hardened
diff --git a/tools-uclibc/stage2-i686-uclibc-vanilla.conf.template b/tools-uclibc/stage2-i686-uclibc-vanilla.conf.template
index fb480ee..95d85f3 100644
--- a/tools-uclibc/stage2-i686-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage2-i686-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: vanilla/i686/stage1-i686-uclibc-vanilla
chost: i686-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.i686.vanilla
+portage_confdir: MyCatalyst/portage.i686.vanilla
diff --git a/tools-uclibc/stage2-mips32r2-uclibc-hardened.conf.template b/tools-uclibc/stage2-mips32r2-uclibc-hardened.conf.template
index 892253e..4c587fb 100644
--- a/tools-uclibc/stage2-mips32r2-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage2-mips32r2-uclibc-hardened.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: hardened/mips32r2/stage1-mips32r2-uclibc-hardened
chost: mips-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.mips.hardened
+portage_confdir: MyCatalyst/portage.mips.hardened
diff --git a/tools-uclibc/stage2-mips32r2-uclibc-vanilla.conf.template b/tools-uclibc/stage2-mips32r2-uclibc-vanilla.conf.template
index 08c7388..6f19e9f 100644
--- a/tools-uclibc/stage2-mips32r2-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage2-mips32r2-uclibc-vanilla.conf.template
@@ -6,4 +6,4 @@ profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: vanilla/mips32r2/stage1-mips32r2-uclibc-vanilla
chost: mips-gentoo-linux-uclibc
-portage_confdir: /root/MyCatalyst/portage.mips.vanilla
+portage_confdir: MyCatalyst/portage.mips.vanilla
diff --git a/tools-uclibc/stage3-amd64-uclibc-hardened.conf.template b/tools-uclibc/stage3-amd64-uclibc-hardened.conf.template
index 256e5e5..1cc923d 100644
--- a/tools-uclibc/stage3-amd64-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage3-amd64-uclibc-hardened.conf.template
@@ -5,4 +5,4 @@ rel_type: hardened/amd64
profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: hardened/amd64/stage2-amd64-uclibc-hardened
-portage_confdir: /root/MyCatalyst/portage.amd64.hardened
+portage_confdir: MyCatalyst/portage.amd64.hardened
diff --git a/tools-uclibc/stage3-amd64-uclibc-vanilla.conf.template b/tools-uclibc/stage3-amd64-uclibc-vanilla.conf.template
index d1d2339..4e3d602 100644
--- a/tools-uclibc/stage3-amd64-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage3-amd64-uclibc-vanilla.conf.template
@@ -5,4 +5,4 @@ rel_type: vanilla/amd64
profile: hardened/linux/uclibc/amd64
snapshot: current
source_subpath: vanilla/amd64/stage2-amd64-uclibc-vanilla
-portage_confdir: /root/MyCatalyst/portage.amd64.vanilla
+portage_confdir: MyCatalyst/portage.amd64.vanilla
diff --git a/tools-uclibc/stage3-armv7a-uclibc-hardened.conf.template b/tools-uclibc/stage3-armv7a-uclibc-hardened.conf.template
index 530f2b6..49f8e58 100644
--- a/tools-uclibc/stage3-armv7a-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage3-armv7a-uclibc-hardened.conf.template
@@ -5,4 +5,4 @@ rel_type: hardened/armv7a
profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: hardened/armv7a/stage2-armv7a-uclibc-hardened
-portage_confdir: /root/MyCatalyst/portage.arm.hardened
+portage_confdir: MyCatalyst/portage.arm.hardened
diff --git a/tools-uclibc/stage3-armv7a-uclibc-vanilla.conf.template b/tools-uclibc/stage3-armv7a-uclibc-vanilla.conf.template
index f5728b0..3c4f12b 100644
--- a/tools-uclibc/stage3-armv7a-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage3-armv7a-uclibc-vanilla.conf.template
@@ -5,4 +5,4 @@ rel_type: vanilla/armv7a
profile: hardened/linux/uclibc/arm/armv7a
snapshot: current
source_subpath: vanilla/armv7a/stage2-armv7a-uclibc-vanilla
-portage_confdir: /root/MyCatalyst/portage.arm.vanilla
+portage_confdir: MyCatalyst/portage.arm.vanilla
diff --git a/tools-uclibc/stage3-i686-uclibc-hardened.conf.template b/tools-uclibc/stage3-i686-uclibc-hardened.conf.template
index 6f559c1..5915936 100644
--- a/tools-uclibc/stage3-i686-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage3-i686-uclibc-hardened.conf.template
@@ -5,4 +5,4 @@ rel_type: hardened/i686
profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: hardened/i686/stage2-i686-uclibc-hardened
-portage_confdir: /root/MyCatalyst/portage.i686.hardened
+portage_confdir: MyCatalyst/portage.i686.hardened
diff --git a/tools-uclibc/stage3-i686-uclibc-vanilla.conf.template b/tools-uclibc/stage3-i686-uclibc-vanilla.conf.template
index 4ad413b..c84c48f 100644
--- a/tools-uclibc/stage3-i686-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage3-i686-uclibc-vanilla.conf.template
@@ -5,4 +5,4 @@ rel_type: vanilla/i686
profile: hardened/linux/uclibc/x86
snapshot: current
source_subpath: vanilla/i686/stage2-i686-uclibc-vanilla
-portage_confdir: /root/MyCatalyst/portage.i686.vanilla
+portage_confdir: MyCatalyst/portage.i686.vanilla
diff --git a/tools-uclibc/stage3-mips32r2-uclibc-hardened.conf.template b/tools-uclibc/stage3-mips32r2-uclibc-hardened.conf.template
index df99c62..8d37410 100644
--- a/tools-uclibc/stage3-mips32r2-uclibc-hardened.conf.template
+++ b/tools-uclibc/stage3-mips32r2-uclibc-hardened.conf.template
@@ -5,4 +5,4 @@ rel_type: hardened/mips32r2
profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: hardened/mips32r2/stage2-mips32r2-uclibc-hardened
-portage_confdir: /root/MyCatalyst/portage.mips.hardened
+portage_confdir: MyCatalyst/portage.mips.hardened
diff --git a/tools-uclibc/stage3-mips32r2-uclibc-vanilla.conf.template b/tools-uclibc/stage3-mips32r2-uclibc-vanilla.conf.template
index c7e3776..70ead58 100644
--- a/tools-uclibc/stage3-mips32r2-uclibc-vanilla.conf.template
+++ b/tools-uclibc/stage3-mips32r2-uclibc-vanilla.conf.template
@@ -5,4 +5,4 @@ rel_type: vanilla/mips32r2
profile: hardened/linux/uclibc/mips
snapshot: current
source_subpath: vanilla/mips32r2/stage2-mips32r2-uclibc-vanilla
-portage_confdir: /root/MyCatalyst/portage.mips.vanilla
+portage_confdir: MyCatalyst/portage.mips.vanilla
next reply other threads:[~2013-02-03 14:46 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-03 14:46 Anthony G. Basile [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-03-02 16:25 [gentoo-commits] proj/releng:master commit in: tools-uclibc/ Anthony G. Basile
2017-06-07 10:25 Anthony G. Basile
2014-08-18 21:59 Robin H. Johnson
2014-08-18 21:59 Robin H. Johnson
2014-08-17 12:16 Anthony G. Basile
2014-08-12 15:04 Anthony G. Basile
2014-06-12 15:50 Anthony G. Basile
2014-06-12 15:30 Anthony G. Basile
2013-07-15 21:25 Anthony G. Basile
2013-06-14 13:28 Anthony G. Basile
2013-05-09 21:41 Anthony G. Basile
2013-05-09 21:11 Anthony G. Basile
2013-03-27 23:23 Anthony G. Basile
2013-03-10 14:57 Anthony G. Basile
2013-03-10 14:50 Anthony G. Basile
2013-02-03 14:45 Anthony G. Basile
2012-12-31 9:59 Anthony G. Basile
2012-12-29 3:56 Anthony G. Basile
2012-12-28 18:08 Anthony G. Basile
2012-12-28 15:50 Anthony G. Basile
2012-11-15 20:33 Anthony G. Basile
2012-11-14 22:47 Anthony G. Basile
2012-11-01 2:41 Anthony G. Basile
2012-10-27 22:37 Anthony G. Basile
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=1359902747.31a49370f5dafd4e3d16026fbce14fdb7f170531.blueness@gentoo \
--to=blueness@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/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