tools/pkg-config: pass arguments at the end
authorArthur Skowronek <arthur.skowronek@tuta.io>
Mon, 15 Oct 2018 12:55:57 +0000 (14:55 +0200)
committerJo-Philipp Wich <jo@mein.io>
Tue, 18 Dec 2018 16:48:08 +0000 (17:48 +0100)
commit1a6c9d634e1f5e9e88044d757fe91a174849374e
tree48d47ff348c998e32f79cc5e9ed3a5d4cd44a72e
parentb35e8fdc990cfab7202049edfacd9c3f29cde601
tools/pkg-config: pass arguments at the end

Go for openwrt passes pkg-config arguments in the format of

        pkg-config --cflags -- pkg-name

which in turn will be passed down to the real pkg-config as something
like

        pkg-config.real --cflags -- pkg-name --define...

and causes the real pkg-config implementation to missinterpret the given
argument list.

This also helps to fix https://github.com/golang/go/issues/27940

Signed-off-by: Arthur Skowronek <arthur.skowronek@tuta.io>
(backported from 5f2cb6d7dc9de24bec7b1139f8d785f0e7588eed)
tools/pkg-config/files/pkg-config