-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MacOS dependency for circumvention for real time data dump unavailability on dmr-marc #866
Comments
Is the MacOS wget the GNU wget? |
It's the GNU
|
@jcmurray I tested with a friend's macbook before pushing, so I believe this solves the problem. Thanks for the bug report and recommendations! |
@mach327 |
The circumvention for the the real time data dump no longer being available on dmr-marc doesn't work on MacOS :-)
The defect
The following line was updated in
db/Makefile
in commit: ec7550dUnfortunately there is no
timeout
command on MacOS so the Makefile bails when updating the database (make updatedb
).Possible circumventions I've thought of
There is a MacOS equivalent called
gtimeout
which can be installed from Homebrew but that introduces a specific dependency into the Makefile which is not a happy thing :-(I had thought of using the following pattern
which achieves the same effect as
timeout
-- at least from a shell prompt. However, it doesn't work when executed as a Makefile recipe due to the way that Make launches the system commands in a rule :-(wget
to achieve the same effect?timeout
command from the command line?Just some thoughts. My own temporary 'fix' is to remove the
timeout
for the moment.The text was updated successfully, but these errors were encountered: