Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package 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
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Kaznacheev
GHC
Commits
faa94d47
Commit
faa94d47
authored
6 years ago
by
Ben Gamari
Browse files
Options
Downloads
Patches
Plain Diff
update-autoconf: Initial commit
parent
4e228267
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
utils/update-autoconf.sh
+27
-0
27 additions, 0 deletions
utils/update-autoconf.sh
with
27 additions
and
0 deletions
utils/update-autoconf.sh
0 → 100755
+
27
−
0
View file @
faa94d47
#!/usr/bin/env bash
# Script to update autoconf scripts in the GHC tree. Should be run prior to
# release.
set
-e
tmp
=
`
mktemp
-d
`
git
-C
$tmp
clone https://git.savannah.gnu.org/git/config.git
commit
=
`
git
-C
$tmp
/config rev-parse HEAD
`
echo
"Updating to
$commit
..."
files
=
for
i
in
$(
git ls-files |
grep
config.guess
)
;
do
echo
$i
cp
$tmp
/config/config.guess
$i
files
=
"
$i
$files
"
done
for
i
in
$(
git ls-files |
grep
config.sub
)
;
do
echo
$i
cp
$tmp
/config/config.sub
$i
files
=
"
$i
$files
"
done
git commit
$files
-m
"Update autoconf scripts"
-m
"Scripts taken from autoconf
$commit
"
rm
-Rf
$tmp
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