52 | | system "cd ${workpath}/${worksrcdir} && \ |
53 | | make depend" |
| 55 | # Hack to make depend if we're using muniversal - is there a better |
| 56 | # way to do this than checking for the directories manually? |
| 57 | if {[variant_isset universal] && \ |
| 58 | [file exists ${workpath}/${worksrcdir}-i386] && \ |
| 59 | [file exists ${workpath}/${worksrcdir}-x86_64]} { |
| 60 | system "cd ${workpath}/${worksrcdir}-i386 && \ |
| 61 | make depend" |
| 62 | system "cd ${workpath}/${worksrcdir}-x86_64 && \ |
| 63 | make depend" |
| 64 | } else { |
| 65 | system "cd ${workpath}/${worksrcdir} && \ |
| 66 | make depend" |
| 67 | } |