Show More
@@ -17,31 +17,33 b' fi' | |||||
17 |
|
17 | |||
18 | # find decent versions of our utilities, insisting on the GNU versions where we |
|
18 | # find decent versions of our utilities, insisting on the GNU versions where we | |
19 | # need to |
|
19 | # need to | |
20 | MERGE=merge |
|
20 | MERGE="merge" | |
21 | DIFF3=gdiff3 |
|
21 | DIFF3="gdiff3" | |
22 | DIFF=gdiff |
|
22 | DIFF="gdiff" | |
23 | PATCH=gpatch |
|
23 | PATCH="gpatch" | |
24 |
|
24 | |||
25 | type $MERGE >/dev/null 2>&1 || MERGE= |
|
25 | type "$MERGE" >/dev/null 2>&1 || MERGE= | |
26 | type $DIFF3 >/dev/null 2>&1 || DIFF3=diff3 |
|
26 | type "$DIFF3" >/dev/null 2>&1 || DIFF3="diff3" | |
27 | type $DIFF >/dev/null 2>&1 || DIFF=diff |
|
|||
28 | type $PATCH >/dev/null 2>&1 || PATCH=patch |
|
|||
29 | $DIFF3 --version >/dev/null 2>&1 || DIFF3= |
|
27 | $DIFF3 --version >/dev/null 2>&1 || DIFF3= | |
|
28 | type "$DIFF" >/dev/null 2>&1 || DIFF="diff" | |||
|
29 | type "$DIFF" >/dev/null 2>&1 || DIFF= | |||
|
30 | type "$PATCH" >/dev/null 2>&1 || PATCH="patch" | |||
|
31 | type "$PATCH" >/dev/null 2>&1 || PATCH= | |||
30 |
|
32 | |||
31 | # find optional visual utilities |
|
33 | # find optional visual utilities | |
32 |
FILEMERGE= |
|
34 | FILEMERGE="/Developer/Applications/Utilities/FileMerge.app/Contents/MacOS/FileMerge" | |
33 | KDIFF3=kdiff3 |
|
35 | KDIFF3="kdiff3" | |
34 | TKDIFF=tkdiff |
|
36 | TKDIFF="tkdiff" | |
35 |
|
37 | |||
36 | type $FILEMERGE >/dev/null 2>&1 || FILEMERGE= |
|
38 | type "$FILEMERGE" >/dev/null 2>&1 || FILEMERGE= | |
37 | type $KDIFF3 >/dev/null 2>&1 || KDIFF3= |
|
39 | type "$KDIFF3" >/dev/null 2>&1 || KDIFF3= | |
38 | type $TKDIFF >/dev/null 2>&1 || TKDIFF= |
|
40 | type "$TKDIFF" >/dev/null 2>&1 || TKDIFF= | |
39 |
|
41 | |||
40 | # random part of names |
|
42 | # random part of names | |
41 |
RAND="$RANDOM |
|
43 | RAND="$RANDOM$RANDOM" | |
42 |
|
44 | |||
43 | # temporary directory for diff+patch merge |
|
45 | # temporary directory for diff+patch merge | |
44 | HGTMP="${TMPDIR-/tmp}/hgmerge.$RAND" |
|
46 | HGTMP="${TMPDIR-'/tmp'}/hgmerge.$RAND" | |
45 |
|
47 | |||
46 | # backup file |
|
48 | # backup file | |
47 | BACKUP="$LOCAL.orig.$RAND" |
|
49 | BACKUP="$LOCAL.orig.$RAND" | |
@@ -76,19 +78,18 b' mv "$LOCAL" "$BACKUP"' | |||||
76 | cp "$BACKUP" "$LOCAL" |
|
78 | cp "$BACKUP" "$LOCAL" | |
77 |
|
79 | |||
78 | # Attempt to do a non-interactive merge |
|
80 | # Attempt to do a non-interactive merge | |
|
81 | if [ -n "$MERGE" -o -n "$DIFF3" ]; then | |||
79 | if [ -n "$MERGE" ]; then |
|
82 | if [ -n "$MERGE" ]; then | |
80 | $MERGE "$LOCAL" "$BASE" "$OTHER" 2> /dev/null && success |
|
83 | $MERGE "$LOCAL" "$BASE" "$OTHER" 2> /dev/null && success | |
81 | cp "$BACKUP" "$LOCAL" |
|
|||
82 | elif [ -n "$DIFF3" ]; then |
|
84 | elif [ -n "$DIFF3" ]; then | |
83 | echo $DIFF3 -m "$BACKUP" "$BASE" "$OTHER" |
|
|||
84 | $DIFF3 -m "$BACKUP" "$BASE" "$OTHER" > "$LOCAL" && success |
|
85 | $DIFF3 -m "$BACKUP" "$BASE" "$OTHER" > "$LOCAL" && success | |
85 | if [ $? -eq 2 ]; then |
|
86 | fi | |
86 | echo "$DIFF3 failed! Exiting." 1>&2 |
|
87 | if [ $? -gt 1 ]; then | |
87 | cp "$BACKUP" "$LOCAL" |
|
88 | echo "automatic merge failed! Exiting." 1>&2 | |
88 | failure |
|
89 | failure | |
89 | fi |
|
90 | fi | |
|
91 | fi | |||
90 |
|
|
92 | cp "$BACKUP" "$LOCAL" | |
91 | fi |
|
|||
92 |
|
93 | |||
93 | # on MacOS X try FileMerge.app, shipped with Apple's developer tools |
|
94 | # on MacOS X try FileMerge.app, shipped with Apple's developer tools | |
94 | if [ -n "$FILEMERGE" ]; then |
|
95 | if [ -n "$FILEMERGE" ]; then |
General Comments 0
You need to be logged in to leave comments.
Login now