Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cookbook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
cookbook
Commits
32ece2d0
Commit
32ece2d0
authored
7 years ago
by
Jeremy Soller
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #54 from ids1024/gitpath
git: ; as path separator
parents
2597d4f6
bc88709f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recipes/git/git.patch
+23
-3
23 additions, 3 deletions
recipes/git/git.patch
with
23 additions
and
3 deletions
recipes/git/git.patch
+
23
−
3
View file @
32ece2d0
...
@@ -620,7 +620,7 @@ diff -ru git-2.13.1/fast-import.c git-2.13.1-new/fast-import.c
...
@@ -620,7 +620,7 @@ diff -ru git-2.13.1/fast-import.c git-2.13.1-new/fast-import.c
#endif
#endif
diff -ru git-2.13.1/git-compat-util.h git-2.13.1-new/git-compat-util.h
diff -ru git-2.13.1/git-compat-util.h git-2.13.1-new/git-compat-util.h
--- git-2.13.1/git-compat-util.h 2017-06-04 18:08:11.000000000 -0700
--- git-2.13.1/git-compat-util.h 2017-06-04 18:08:11.000000000 -0700
+++ git-2.13.1-new/git-compat-util.h 2017-0
6
-2
5
1
5:01:02.935061516
-0700
+++ git-2.13.1-new/git-compat-util.h 2017-0
7
-2
4
1
8:52:23.567535558
-0700
@@ -179,7 +179,6 @@
@@ -179,7 +179,6 @@
#include <assert.h>
#include <assert.h>
#include <regex.h>
#include <regex.h>
...
@@ -651,7 +651,18 @@ diff -ru git-2.13.1/git-compat-util.h git-2.13.1-new/git-compat-util.h
...
@@ -651,7 +651,18 @@ diff -ru git-2.13.1/git-compat-util.h git-2.13.1-new/git-compat-util.h
#ifndef NO_INTTYPES_H
#ifndef NO_INTTYPES_H
#include <inttypes.h>
#include <inttypes.h>
#else
#else
@@ -1123,4 +1117,7 @@
@@ -319,9 +313,7 @@
#define PRIo32 "o"
#endif
-#ifndef PATH_SEP
-#define PATH_SEP ':'
-#endif
+#define PATH_SEP ';'
#ifdef HAVE_PATHS_H
#include <paths.h>
@@ -1123,4 +1115,7 @@
extern int cmd_main(int, const char **);
extern int cmd_main(int, const char **);
...
@@ -797,7 +808,7 @@ diff -ru git-2.13.1/rerere.c git-2.13.1-new/rerere.c
...
@@ -797,7 +808,7 @@ diff -ru git-2.13.1/rerere.c git-2.13.1-new/rerere.c
diff -ru git-2.13.1/run-command.c git-2.13.1-new/run-command.c
diff -ru git-2.13.1/run-command.c git-2.13.1-new/run-command.c
--- git-2.13.1/run-command.c 2017-06-04 18:08:11.000000000 -0700
--- git-2.13.1/run-command.c 2017-06-04 18:08:11.000000000 -0700
+++ git-2.13.1-new/run-command.c 2017-0
6
-2
5
1
5:19:23.024088698
-0700
+++ git-2.13.1-new/run-command.c 2017-0
7
-2
4
1
8:38:38.359269687
-0700
@@ -120,9 +120,9 @@
@@ -120,9 +120,9 @@
#ifndef GIT_WINDOWS_NATIVE
#ifndef GIT_WINDOWS_NATIVE
static inline void dup_devnull(int to)
static inline void dup_devnull(int to)
...
@@ -810,6 +821,15 @@ diff -ru git-2.13.1/run-command.c git-2.13.1-new/run-command.c
...
@@ -810,6 +821,15 @@ diff -ru git-2.13.1/run-command.c git-2.13.1-new/run-command.c
if (dup2(fd, to) < 0)
if (dup2(fd, to) < 0)
die_errno(_("dup2(%d,%d) failed"), fd, to);
die_errno(_("dup2(%d,%d) failed"), fd, to);
close(fd);
close(fd);
@@ -138,7 +138,7 @@
return NULL;
while (1) {
- const char *end = strchrnul(p, ':');
+ const char *end = strchrnul(p, ';');
strbuf_reset(&buf);
@@ -483,21 +483,21 @@
@@ -483,21 +483,21 @@
struct argv_array nargv = ARGV_ARRAY_INIT;
struct argv_array nargv = ARGV_ARRAY_INIT;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment