Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
37cf3dd6
Commit
37cf3dd6
authored
Dec 03, 2013
by
Niels Möller
Browse files
configure: Avoid overwriting existing dependency files.
parent
59432936
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
37cf3dd6
2013-12-03 Niels Möller <nisse@lysator.liu.se>
* configure.ac (dummy-dep-files): Don't overwrite any existing
dependency files.
* x86_64/md5-compress.asm: New file, similar to the x86 version.
35% speedup.
...
...
configure.ac
View file @
37cf3dd6
...
...
@@ -135,7 +135,10 @@ if test x$enable_dependency_tracking = xyes ; then
AC_CONFIG_COMMANDS([dummy-dep-files],
[(cd "$srcdir" && find . '(' -name '*.c' -o -name '*.cxx' ')' -print) \
| sed 's/\.c\(xx\)\{0,1\}$//' | (while read f; do echo > "$f.o.d"; echo > "$f.po.d"; done)
| sed 's/\.c\(xx\)\{0,1\}$//' | (while read f; do \
test -f "$f.o.d" || echo > "$f.o.d"; \
test -f "$f.po.d" || echo > "$f.po.d"; \
done)
])
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment