summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2013-01-22 11:47:11 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2013-01-22 11:47:11 +0000
commite8485098b43d698224c01284d5e5b0991268f852 (patch)
treeb10540c1c0ddc670b386781e0716017a3ae9a393
parentbdcd4597ab0e3af0e6447036c5309ef6ed9478ae (diff)
downloadflex-baserock/bootstrap.tar.gz
Remove touch from flex morphologybaserock/bootstrap
This is no longer needed as morph now updates the mtime of all files before running configure commands. Additionally it was the cause of a non-deterministic build failure, since busybox touch doesn't guarantee that every file is set to the same time, each file is set to the current time, at the time of processing. This caused a build failure when a file the documentation was generated from was set to a newer time.
-rw-r--r--flex.morph3
1 files changed, 1 insertions, 2 deletions
diff --git a/flex.morph b/flex.morph
index b921c37..d58baac 100644
--- a/flex.morph
+++ b/flex.morph
@@ -3,8 +3,7 @@
"kind": "chunk",
"configure-commands": [
"./autogen.sh",
- "./configure --prefix=\"$PREFIX\"",
- "touch doc/*"
+ "./configure --prefix=\"$PREFIX\""
],
"build-commands": [
"make"