Commit e555c4b4 by Sam Stephenson

Use date+pid instead of random number

parent a9653dfe
...@@ -109,7 +109,7 @@ if [ -z "$PREFIX_PATH" ]; then ...@@ -109,7 +109,7 @@ if [ -z "$PREFIX_PATH" ]; then
usage usage
fi fi
SEED="$$-${RANDOM}" SEED="$(date "+%Y%m%d%H%M%S").$$"
LOG_PATH="/tmp/ruby-build.${SEED}.log" LOG_PATH="/tmp/ruby-build.${SEED}.log"
TEMP_PATH="/tmp/ruby-build.${SEED}" TEMP_PATH="/tmp/ruby-build.${SEED}"
RUBY_BIN="${PREFIX_PATH}/bin/ruby" RUBY_BIN="${PREFIX_PATH}/bin/ruby"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment