Ticket #3298: haiku_macox.patch
File haiku_macox.patch, 661 bytes (added by , 14 years ago) |
---|
-
configure
138 138 fi 139 139 } 140 140 141 # real_path 142 # 143 # returns the realpath of a symbolic link. 144 # 145 real_path() 146 { 147 perl -MCwd=realpath -e'print realpath($ARGV[0]) . qq(\n)' $1 148 } 149 141 150 # standard_gcc_settings 142 151 # 143 152 # Sets the variables for a GCC platform. … … 148 157 readlink="greadlink -e" 149 158 elif which realpath > /dev/null 2>&1; then 150 159 readlink=realpath 160 elif readlink -e / > /dev/null 2>&1; then 161 readlink="readlink -e" 151 162 else 152 readlink= "readlink -e"163 readlink=real_path 153 164 fi 154 165 155 166 # PLATFORM_LINKLIBS