git.annexia.org
/
goals.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15ee921
)
stdlib: Fix *file tactic.
author
Richard W.M. Jones
<rjones@redhat.com>
Fri, 3 Jan 2020 19:07:11 +0000
(19:07 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 3 Jan 2020 19:08:32 +0000
(19:08 +0000)
Broken test if there is more than one dependency.
stdlib/prelude.gl
patch
|
blob
|
history
diff --git
a/stdlib/prelude.gl
b/stdlib/prelude.gl
index
70c664c
..
5b8818a
100644
(file)
--- a/
stdlib/prelude.gl
+++ b/
stdlib/prelude.gl
@@
-27,7
+27,7
@@
tactic *file (filename) = {
# Otherwise rebuild if it is older than any dependency.
for f in %<; do
- test %filename -ot "$f" && exit 99 ||
exit 0
+ test %filename -ot "$f" && exit 99 ||
:
done
}