acxz / pkgbuilds

PKGBUILDs for Arch Linux
25 stars 44 forks source link

[vgrep] go dependency should only be build-time #177

Closed BrainDamage closed 2 years ago

BrainDamage commented 2 years ago

go compiler statically builds files, so runtime dependency is unnecessary.

This can be confirmed by checking with lddtree:

lddtree $(which vgrep)
/usr/bin/vgrep (interpreter => /lib64/ld-linux-x86-64.so.2)
    libc.so.6 => /usr/lib/libc.so.6
acxz commented 2 years ago

thx for the report! Do you mind creating a PR for this fix?