We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If doing a 'make clean' on an incomplete build, the following error is displayed:
cd result && make -f makefile clean make[1]: Entering directory '/media/sf_source/3rdparty/nativejson-benchmark/result' rm *.html rm: cannot remove '*.html': No such file or directory makefile:13: recipe for target 'clean' failed make[1]: *** [clean] Error 1 make[1]: Leaving directory '/media/sf_source/3rdparty/nativejson-benchmark/result' Makefile:19: recipe for target 'clean' failed make: *** [clean] Error 2
In the makefile in the 'result' folder, the following has to be changed:
clean: -rm *.html +rm -f *.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If doing a 'make clean' on an incomplete build, the following error is displayed:
In the makefile in the 'result' folder, the following has to be changed:
The text was updated successfully, but these errors were encountered: