Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Anders Lindh Olsson
e3-require
Commits
faeb574e
Commit
faeb574e
authored
4 years ago
by
Simon Rose
Browse files
Options
Downloads
Patches
Plain Diff
Fixing patch behavior to allow renaming files using 'git apply' instead of 'patch'
parent
1455265d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure/E3/DEFINES_FT
+4
-5
4 additions, 5 deletions
configure/E3/DEFINES_FT
configure/modules/DEFINES_FT
+2
-2
2 additions, 2 deletions
configure/modules/DEFINES_FT
with
6 additions
and
7 deletions
configure/E3/DEFINES_FT
+
4
−
5
View file @
faeb574e
...
...
@@ -16,22 +16,20 @@ endef
define patch_site
for i in $(wildcard $(TOP)/patch/Site/$(E3_MODULE_VERSION)-*.p0.patch); do\
printf "\nPatching %s with the file : %s\n" "$(E3_MODULE_SRC_PATH)" "$$i"; \
patch -d
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0
<
$$i;\
git apply --directory=
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0 $$i;\
done
endef
define patch_revert_site
for i in $(wildcard $(TOP)/patch/Site/$(E3_MODULE_VERSION)-*.p0.patch); do\
printf "\n
P
atch
ing
%s with the file : %s\n" "$(E3_MODULE_SRC_PATH)" "$$i"; \
patch -R -d
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0
<
$$i;\
printf "\n
Reverting applied p
atch %s with the file : %s\n" "$(E3_MODULE_SRC_PATH)" "$$i"; \
git apply -R --directory=
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0 $$i;\
done
endef
ifndef VERBOSE
QUIET := @
endif
...
...
@@ -48,3 +46,4 @@ VARS_EXCLUDES+=patch_site
VARS_EXCLUDES+=patch_revert_site
VARS_EXCLUDES+=QUIET
VARS_EXCLUDES+=SHELL
This diff is collapsed.
Click to expand it.
configure/modules/DEFINES_FT
+
2
−
2
View file @
faeb574e
...
...
@@ -16,7 +16,7 @@ endef
define patch_site
for i in $(wildcard $(TOP)/patch/Site/$(E3_MODULE_VERSION)-*.p0.patch); do\
printf "\nPatching %s with the file : %s\n" "$(E3_MODULE_SRC_PATH)" "$$i"; \
patch -d
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0
<
$$i;\
git apply --directory=
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0 $$i;\
done
endef
...
...
@@ -24,7 +24,7 @@ endef
define patch_revert_site
for i in $(wildcard $(TOP)/patch/Site/$(E3_MODULE_VERSION)-*.p0.patch); do\
printf "\nReverting applied patch %s with the file : %s\n" "$(E3_MODULE_SRC_PATH)" "$$i"; \
patch -R -d
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0
<
$$i;\
git apply -R --directory=
$(E3_MODULE_SRC_PATH) --ignore-whitespace -p0 $$i;\
done
endef
...
...
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