diff binary-dist-rules.mk @ 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 e5e0b3f7244b
children 5ae69991eaa1
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