Actions
Bug #7824
closed/hipster: /usr/bin/guile-snarf problem - path to gcc hard-coded
Start date:
2017-01-30
Due date:
% Done:
0%
Estimated time:
Difficulty:
Medium
Tags:
needs-triage
Description
Hi,
I have found this one accidentally:
$ grep gcc /usr/bin/guile-snarf # C pre-processor determined at Guile configure-time: "/usr/gcc/4.7/bin/gcc -E". if [ x"$CPP" = x ] ; then cpp="/usr/gcc/4.7/bin/gcc -E" ; else cpp="$CPP" ; fi
$ pkg search -l /usr/bin/guile-snarf INDEX ACTION VALUE PACKAGE path file usr/bin/guile-snarf pkg:/library/guile@1.8.8-2016.0.0.0
$ pkg info library/guile Name: library/guile Summary: GNU guile utility Description: Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system. Category: Development/Other Languages State: Installed Publisher: openindiana.org Version: 1.8.8 Branch: 2016.0.0.0 Packaging Date: 29. Juli 2016 23:58:07 Last Install Time: 30. Januar 2017 13:57:19 Size: 6.71 MB FMRI: pkg://openindiana.org/library/guile@1.8.8-2016.0.0.0:20160729T235807Z Project URL: http://www.gnu.org/software/guile/ Source URL: http://ftp.gnu.org/pub/gnu/guile/guile-1.8.8.tar.gz
I think that construct
cpp="/usr/gcc/4.7/bin/gcc -E"
has to be replaced with
cpp="/usr/bin/gcc -E"
Or something similar.
This is really minor issue, but guess needs fix anyway.
Regards.
Updated by Alexander Pyhalov over 5 years ago
- Status changed from New to Resolved
- Assignee set to Aurélien Larcher
Should be fixed by https://github.com/OpenIndiana/oi-userland/pull/2760
Actions