mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #886] s3fs autogen.sh install error #515
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#515
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rosamdnb on GitHub (Jan 9, 2019).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/886
--- Make commit hash file -------
--- Finished commit hash file ---
--- Start autotools -------------
/bin/grep: line 1: lrwxrwxrwx.: command not found
autom4te: need GNU m4 1.4 or later: /usr/bin/M4
aclocal: error: echo failed with exit status: 1
--- Finished autotools ----------
I am attempting to install on a RedHat EC2 instance and get the above error.
What am I doing wrong?
@juliogonzalez commented on GitHub (Jan 9, 2019):
It seems to me that you don't have grep installed.
It's strange, since
grepis even available at CentOS docker image as it's a basic tool, so maybe your instance gotgrepremoved for some reason.Try to install it back with:
yum install grep@rosamdnb commented on GitHub (Jan 9, 2019):
[root@Neo4J]# yum install grep
Loaded plugins: amazon-id, product-id, rhui-lb, search-disabled-repos, subscription-manager, versionlock
This system is not registered with an entitlement server. You can use subscription-manager to register.
Package grep-2.20-3.el7.x86_64 already installed and latest version
Nothing to do
@juliogonzalez commented on GitHub (Jan 9, 2019):
It seems
/bin/grep: line 1: lrwxrwxrwx.: command not foundis misleading.So far I am unable to reproduce this on CentOS7 with only the packages provided by the image + git + automake.
Is automake installed, as well as all required dependencies to build s3fs installed? It would also help if you tell the s3fs version you are trying to compile (I guess it's just
masterbranch, from the Git repository) and the RHEL versionIf you do not need s3fs from
master, remember that the latest stable is available at the EPEL repositories.@gaul commented on GitHub (Jan 9, 2019):
It looks like you are missing
m4; tryyum install m4.@juliogonzalez commented on GitHub (Jan 9, 2019):
That could fix it yes. But I wonder how is it that
aclocalis present (asautogen.shcan't even run without it), whilem4is absent.m4is a dependency of the packageautomakethat providesaclocal.So basically if you remove the package
m4,automakeandautoconfare removed, and thenautogen.shjust complains aboutaclocalbeing missing:@rosamdnb I am curious: how are you managing the devel toolchain? With
yum, or just building everything (including automake, autoconfig, m4, etc) manually?@juliogonzalez commented on GitHub (Mar 23, 2019):
@rosamdnb is this fixed?
@roonie007 commented on GitHub (Apr 5, 2019):
yum install automakesolved this issue for me@gaul commented on GitHub (Apr 6, 2019):
Please reopen if the provided suggestion does not resolve your issues. Also consider using the distribution packages to avoid having to compile s3fs yourself.
@yuvenation commented on GitHub (Jul 23, 2021):
yum install automake worked for me too