18 | | No idea why it doesn't like the command within the portfile but doing that worked |
| 18 | No idea why it doesn't like the command within the portfile but doing that worked. |
| 19 | |
| 20 | |
| 21 | Edit2; |
| 22 | Made a small change to the Portfile and got it working again, seems it doesn't like {{{lappend merger_configure_env(i386)}}} line so I swapped it out like so |
| 23 | {{{ |
| 24 | } |
| 25 | lappend merger_configure_args(i386) --enable-asm |
| 26 | lappend merger_configure_args(x86_64) --enable-asm |
| 27 | - lappend merger_configure_env(i386) LDFLAGS='-Wl,-read_only_relocs,suppress' |
| 28 | + configure.ldflags-append -Wl,-read_only_relocs,suppress |
| 29 | } else { |
| 30 | }}} |
| 31 | |
| 32 | Now it's building correctly, I'll post again if something else decided to die while building {{{gstreamer1-gst-plugins-bad}}} |