Changes between Version 1 and Version 2 of Ticket #56991, comment 78


Ignore:
Timestamp:
Sep 27, 2019, 10:19:41 PM (5 years ago)
Author:
Gcenx
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56991, comment 78

    v1 v2  
    1616}}}
    1717
    18 No idea why it doesn't like the command within the portfile but doing that worked
     18No idea why it doesn't like the command within the portfile but doing that worked.
     19
     20
     21Edit2;
     22Made 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
     32Now it's building correctly, I'll post again if something else decided to die while building {{{gstreamer1-gst-plugins-bad}}}