Skip to content

Commit

Permalink
Fix warning message when stripping package contents, should fix Alexp…
Browse files Browse the repository at this point in the history
  • Loading branch information
elieux committed Feb 3, 2015
1 parent d2c7fcd commit df01d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/libmakepkg/tidy/strip.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tidy_strip() {
# *.so: Apache2 modules, OCaml stublibs, Ruby modules
# *.oct: Octave modules
# *.cmxs: OCaml natdynlink modules: http://gallium.inria.fr/~frisch/ndl.txt
find * -type f ! -name '*.dll.a' ! -name '*.lib' \
find . -type f ! -name '*.dll.a' ! -name '*.lib' \
-a \( -name '*.a' -o -name '*.dll' -o -name '*.exe' -o -name '*.so' -o -name '*.so.*' -o -name '*.oct' -o -name '*.cmxs' \) -print0 \
-o -type f -executable ! -name '*.dll' ! -name '*.exe' ! -name '*.so' ! -name '*.so.[0-9]*' ! -name '*.oct' ! -name '*.cmxs' ! -name '*.a' ! -name '*.la' ! -name '*.lib' ! -name '*.exe.manifest' ! -name '*.exe.config' ! -name '*.dll.config' ! -name '*.mdb' ! -name '*-config' ! -name '*.csh' ! -name '*.sh' ! -name '*.pl' ! -name '*.pm' ! -name '*.py' ! -name '*.rb' ! -name '*.tcl' -print0 | \
while read -d $'\0' binary
Expand Down

0 comments on commit df01d74

Please sign in to comment.