mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #287] unsuccessful "make" #148
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#148
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 @cc13ny on GitHub (Oct 30, 2015).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/287
Hi all,
I'm new to s3fs-fuse. After I follow the "Installation" section (on README.md) to do "make", it showed the results as follows, which seems to do nothing because of the message "Nothing to be done for 'all' ".
I'm not sure it is successful or not? If not, what the problems may be?
The system setting are:
Host: Win 8.1 64-bit
Guest: Ubuntu 14.04 on VirtualBox 4.3.30
@RobbKistler commented on GitHub (Oct 30, 2015):
@chasego make does "incremental builds" -- it won't re-run steps if they aren't necesary. What you pasted looks like the results of running make again after a successful build has already occured. You can verify this by checking for the existence of
src/s3fs, which is the executable created by make. You can also ask make to install the s3fs exectuable for you:@cc13ny commented on GitHub (Oct 31, 2015):
I verified the existence of
src/s3fsThen I typed
sudo make install. It seems that there's no problem. But I'd like to make sure because ofNothing to be done. However, based on your explanation, it should be OK.@RobbKistler commented on GitHub (Oct 31, 2015):
You can force a build
@cc13ny commented on GitHub (Oct 31, 2015):
@RobbKistler Thank your patience for telling me the basics