Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-defaults
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
python-defaults
Commits
8f8a5b97
Commit
8f8a5b97
authored
14 years ago
by
Piotr Ożarowski
Browse files
Options
Downloads
Patches
Plain Diff
do not ignore errors in debian/rules' loops
(two more `set -e`s added, closes: 397499)
parent
edfecee7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+2
-0
2 additions, 0 deletions
debian/changelog
debian/rules
+2
-0
2 additions, 0 deletions
debian/rules
with
4 additions
and
0 deletions
debian/changelog
+
2
−
0
View file @
8f8a5b97
...
...
@@ -12,6 +12,8 @@ python-defaults (2.6.5-6) unstable; urgency=low
521508, thanks to Carl Chenet for the original patch)
- print nice error message if computed set of supported versions is empty
(closes: 583392)
* debian/rules: do not ignore errors (two more `set -e`s added, closes:
397499)
[ Scott Kitterman ]
* Merge changes back from Ubuntu package:
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
2
−
0
View file @
8f8a5b97
...
...
@@ -95,6 +95,7 @@ clean: control-file
rm -rf debian/python-policy.html
rm -f faq/*.h2 faq/*.html
set -e;\
for f in debian/*.in; do \
f2=`echo $$f | sed "s,PVER,$(PVER),g;s/VER/$(VER)/g;s,\.in$$,,"`; \
if [ $$f2 != debian/control ]; then \
...
...
@@ -107,6 +108,7 @@ clean: control-file
stamp-control:
: # We have to prepare the various control files
set -e;\
for f in debian/*.in; do \
f2=`echo $$f | sed "s,PVER,$(PVER),g;s/VER/$(VER)/g;s,\.in$$,,"`; \
if [ $$f2 != debian/control ]; then \
...
...
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