Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 398799 - dev-ml/camlp5 uses seq in global scope
Summary: dev-ml/camlp5 uses seq in global scope
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Team for the ML programming language family
URL:
Whiteboard:
Keywords: QAcanfix, QAglobalscope
Depends on:
Blocks: 398809
  Show dependency tree
 
Reported: 2012-01-13 20:02 UTC by Ulrich Müller
Modified: 2012-01-16 15:25 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ulrich Müller gentoo-dev 2012-01-13 20:02:24 UTC
dev-ml/camlp5 ebuilds are using the external program seq in global scope.

It can be easily fixed:
-    for i in $(seq 1 ${PATCHLEVEL}) ; do
+    for (( i=1; i<=PATCHLEVEL; i++ )) ; do
Comment 1 Alexis Ballier gentoo-dev 2012-01-16 15:25:05 UTC
applied to latest version, thx