added smart_strip.sh for rpm building

git-svn-id: trunk@4604 -
This commit is contained in:
mattias 2003-09-12 08:38:13 +00:00
parent 69a7cc5037
commit dfc17323a6
2 changed files with 11 additions and 0 deletions

1
.gitattributes vendored
View File

@ -997,6 +997,7 @@ tools/install/create_lazarus_deb.sh -text svneol=native#application/x-sh
tools/install/create_lazarus_export_tgz.sh -text svneol=native#application/x-sh
tools/install/create_lazarus_rpm.sh -text svneol=native#application/x-sh
tools/install/create_lazarus_tgz_from_local_dir.sh -text svneol=native#application/x-sh
tools/install/smart_strip.sh -text svneol=native#application/x-sh
tools/lazarusmake.ini svneol=native#text/plain
tools/lazres.lpi svneol=native#text/plain
tools/lazres.pp svneol=native#text/pascal

View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
Params=$@
for p in $Params; do
File=$p
done
echo $File | grep -q '\bpalmos\b' || strip $PARAMS
# end.