changeset 4119:0db86306c404

Strip compiled oct-files by default * binary-dist-rules.mk: Include '*.oct' in the list of file patterns to strip.
author Mike Miller <mtmiller@octave.org>
date Wed, 30 Mar 2016 16:32:20 -0700
parents a14a5640d12b
children f2d7bb7777da
files binary-dist-rules.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/binary-dist-rules.mk	Thu Mar 31 07:50:33 2016 -0400
+++ b/binary-dist-rules.mk	Wed Mar 30 16:32:20 2016 -0700
@@ -113,7 +113,7 @@
   ifeq ($(MXE_WINDOWS_BUILD),yes)
     define strip-dist-files
       echo "stripping files..."
-      for f in `find $(OCTAVE_DIST_DIR) -name '*.dll' -o -name '*.exe'`; do \
+      for f in `find $(OCTAVE_DIST_DIR) -name '*.dll' -o -name '*.exe' -o -name '*.oct'`; do \
 	$(MXE_STRIP) $$f; \
       done
     endef