Skip to content

Commit

Permalink
Fix a bug in updatefat tool affecting ppc+ppc64 fat installs
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@40193 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
urbaneks committed Dec 15, 2006
1 parent 2ed4b4c commit db486ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/updatefat
Expand Up @@ -21,7 +21,7 @@ fi

#echo "architecture: $thisarch";
if [ -e "$1" ]; then \
if lipo -detailed_info "$1"|grep "architecture:* $thisarch" > /dev/null; then
if lipo -detailed_info "$1"|grep "architecture:* $thisarch\$" > /dev/null; then
if lipo -info "$1"|grep ^Non-fat > /dev/null; then
lipo -create "$2" -o "$1"
else
Expand Down

0 comments on commit db486ff

Please sign in to comment.