Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
592
Issues
592
List
Boards
Labels
Service Desk
Milestones
Merge Requests
114
Merge Requests
114
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
4f2b3799
Commit
4f2b3799
authored
Apr 15, 2020
by
Michał Kępień
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'michal/fix-srcid-on-windows' into 'master'
Fix "srcid" on Windows See merge request
!3364
parents
8a24be07
05e13e7c
Pipeline
#39165
failed with stages
in 62 minutes and 48 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
win32utils/Configure
win32utils/Configure
+7
-0
No files found.
win32utils/Configure
View file @
4f2b3799
...
...
@@ -2638,6 +2638,13 @@ sub makesrcid {
close
SIN
;
}
if
(
$srcid
eq
"
unset_id
"
and
-
d
"
..
\\
.git
")
{
$data
=
`
git rev-list --max-count=1 HEAD
`;
if
(
length
(
$data
)
>
0
)
{
$srcid
=
substr
(
$data
,
0
,
7
);
}
}
# Now set up the output version file
my
$ThisDate
=
scalar
localtime
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment