Skip to content

Commit db1c730

Browse files
committed
build : projects that are symlinked were not checking deps correctly
1 parent 51ab9a1 commit db1c730

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/dep

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ChecksumFile=.$TargetId.dep-md5
2121
# the quotes would not be preserved correctly so there are 2 nearly identical
2222
# copies of the find filter.
2323
function make-checksum-force {
24-
find $Dependency \
24+
find $Dependency/ \
2525
-type f \
2626
-a -not -path '*/.git/*' \
2727
-a -not -name '*~' \
@@ -47,7 +47,7 @@ function make-checksum-force {
4747

4848
function make-checksum {
4949
if test -f $ChecksumFile; then
50-
if find $Dependency \
50+
if find $Dependency/ \
5151
-newer $ChecksumFile \
5252
-a -type f \
5353
-a -not -path '*/.git/*' \

0 commit comments

Comments
 (0)