diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-10 15:54:10 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-10 15:54:10 -0400 |
commit | 88cdc57b277ec240d4c5ddfbbfaddfed2b2408c1 (patch) | |
tree | a5d829d5c46d4db883d49307d2e72323a29ef9e0 | |
parent | 93010a5bde39a26d51751edee9276c4c514f7bf4 (diff) |
fix
-rwxr-xr-x | tools/notsd-fixup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/notsd-fixup b/tools/notsd-fixup index 820d2fec17..af0fdbf9d4 100755 --- a/tools/notsd-fixup +++ b/tools/notsd-fixup @@ -19,7 +19,7 @@ main() { find "$@" -type l -name GNUmakefile -delete # It's OK for the top-level one to fail find "$@" -type f -name Makefile -printf '%h\0' | - xargs -r0 -I {} ln -s -t {} GNUmakefile + xargs -r0 -I {} ln -s -r -t {} GNUmakefile # C includes rm -rf -- "$0"--includes.cache |