Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SWIFT
SWIFTsim
Merge requests
!634
Resolve "Lost git SHA when using tarballs"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Lost git SHA when using tarballs"
471-lost-git-sha-when-using-tarballs
into
master
Overview
0
Commits
1
Changes
1
Merged
Peter W. Draper
requested to merge
471-lost-git-sha-when-using-tarballs
into
master
6 years ago
Overview
0
Commits
1
Changes
1
Expand
Closes
#471 (closed)
Edited
6 years ago
by
Peter W. Draper
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
01ae1b2e
1 commit,
6 years ago
1 file
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
configure.ac
+
3
−
2
Options
@@ -1575,8 +1575,9 @@ AC_CONFIG_FILES([tests/testFormat.sh], [chmod +x tests/testFormat.sh])
# Save the compilation options
AC_DEFINE_UNQUOTED([SWIFT_CONFIG_FLAGS],["$swift_config_flags"],[Flags passed to configure])
# Make sure the latest git revision string gets included
touch src/version.c
# Make sure the latest git revision string gets included, when we are
# working in a checked out repository.
test -d ${srcdir}/.git && touch ${srcdir}/src/version.c
# Need to define this, instead of using fifth argument of AC_INIT, until
# 2.64. Defer until now as this redefines PACKAGE_URL, which can emit a
Loading