Skip to content

Commit

Permalink
fix install permissions of jar / dll to be non-exec
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Oct 11, 2011
1 parent 8182e5c commit dbad0b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.template
Expand Up @@ -294,7 +294,7 @@ install-octave_modular: $(TEMPLATE_TARGET)
install-java_modular: $(TEMPLATE_TARGET)
install -d -m755 "$(DESTDIR)/$(PREFIX)/share/java"
install -d -m755 "$(DESTDIR)$(LIBDIR)/jni"
install -m755 shogun.jar "$(DESTDIR)/$(PREFIX)/share/java"
install -m644 shogun.jar "$(DESTDIR)/$(PREFIX)/share/java"
install -m755 $(SWIGLIBFILES) "$(DESTDIR)$(LIBDIR)/jni"

install-ruby_modular: $(TEMPLATE_TARGET)
Expand All @@ -307,7 +307,7 @@ install-lua_modular: $(TEMPLATE_TARGET)

install-csharp_modular: $(TEMPLATE_TARGET)
install -d -m755 "$(DESTDIR)/$(LIBDIR)/cli/shogun"
install -m755 modshogun.dll "$(DESTDIR)/$(LIBDIR)/cli/shogun"
install -m644 modshogun.dll "$(DESTDIR)/$(LIBDIR)/cli/shogun"
install -m755 $(SWIGLIBFILES) "$(DESTDIR)$(LIBDIR)/cli/shogun"

run-testsuite: run-testsuite-template
Expand Down

0 comments on commit dbad0b5

Please sign in to comment.