Skip to content
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

More paths should be added to .gitignore #492

Open
HalCanary opened this issue Apr 20, 2021 · 0 comments
Open

More paths should be added to .gitignore #492

HalCanary opened this issue Apr 20, 2021 · 0 comments

Comments

@HalCanary
Copy link

Several files are left over after I run

cd jzmq-jni
./autogen.sh
./configure --prefix="$P" --with-zeromq="$P"
 make -j install

These are:

  • jzmq-jni/src/main/c++/config.hpp
  • jzmq-jni/src/main/c++/config.hpp.in
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ.h
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ_Context.h
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ_Curve.h
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ_Event.h
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ_Poller.h
  • jzmq-jni/src/main/c++/org_zeromq_ZMQ_Socket.h

The following patch would fix this:

diff --git a/.gitignore b/.gitignore
index b0a6149..68423d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -82,3 +82,11 @@ javah_stamp
 .tags*
 *.sublime-project
 *.sublime-workspace
+jzmq-jni/src/main/c++/config.hpp
+jzmq-jni/src/main/c++/config.hpp.in
+jzmq-jni/src/main/c++/org_zeromq_ZMQ.h
+jzmq-jni/src/main/c++/org_zeromq_ZMQ_Context.h
+jzmq-jni/src/main/c++/org_zeromq_ZMQ_Curve.h
+jzmq-jni/src/main/c++/org_zeromq_ZMQ_Event.h
+jzmq-jni/src/main/c++/org_zeromq_ZMQ_Poller.h
+jzmq-jni/src/main/c++/org_zeromq_ZMQ_Socket.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant