Skip to content
  • Matthew Pickering's avatar
    99623358
    hadrian: Correct generation of hsc2hs wrapper · 99623358
    Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
    If you inspect the inside of a wrapper script for hsc2hs you will see
    that the cflag and lflag values are concatenated incorrectly.
    
    ```
    HSC2HS_EXTRA="--cflag=-U__i686--lflag=-fuse-ld=gold"
    ```
    
    It should instead be
    
    ```
    HSC2HS_EXTRA="--cflag=-U__i686 --lflag=-fuse-ld=gold"
    ```
    
    Fixes #21221
    99623358
    hadrian: Correct generation of hsc2hs wrapper
    Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
    If you inspect the inside of a wrapper script for hsc2hs you will see
    that the cflag and lflag values are concatenated incorrectly.
    
    ```
    HSC2HS_EXTRA="--cflag=-U__i686--lflag=-fuse-ld=gold"
    ```
    
    It should instead be
    
    ```
    HSC2HS_EXTRA="--cflag=-U__i686 --lflag=-fuse-ld=gold"
    ```
    
    Fixes #21221
Loading