Compare commits

...

1 Commits

Author SHA1 Message Date
Domen Kožar
1eeb4b3c51 While patching shebangs in source, keep the modification date
Otherwise this triggers automake/autoconf/m4 dependencies that
are redundant because of the trivial change.
2015-01-08 10:25:04 +01:00

View File

@ -59,7 +59,9 @@ patchShebangs() {
echo "$f: interpreter directive changed from \"$oldInterpreterLine\" to \"$newInterpreterLine\""
# escape the escape chars so that sed doesn't interpret them
escapedInterpreterLine=$(echo "$newInterpreterLine" | sed 's|\\|\\\\|g')
mod_time=$(stat --format=%y "$f")
sed -i -e "1 s|.*|#\!$escapedInterpreterLine|" "$f"
touch -d "$mod_time" "$f"
fi
fi
done