We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdca470 commit 96329aaCopy full SHA for 96329aa
build/build-cproc.sh
@@ -54,6 +54,13 @@ git clone --depth 1 "${URL}" --branch "${BRANCH}"
54
pushd cproc
55
56
## Temporary (hopefully) patch to support basic --version
57
+##
58
+## The following 2 lines are needed on virgin system where nothing is
59
+## configured. git really needs something here, or it will fail. Even using
60
+## --author is not enough.
61
+git config user.email || git config user.email "none@example.com"
62
+git config user.name || git config user.name "None"
63
+
64
git am ../../cproc-version.patch
65
66
./configure
0 commit comments