summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gevers <elbrus@debian.org>2014-04-20 22:09:35 +0200
committerPaul Gevers <elbrus@debian.org>2014-04-20 22:09:35 +0200
commitf91efd02d3b5c88e42006a5b0065f99f2d973158 (patch)
treeab112bdbdc8d6c0d1ecbd7b24b2c71127a8c4dd7
parent958d8bcb4f9f6c8cb7bae9e4019d1d345733f6e6 (diff)
downloadfpc-f91efd02d3b5c88e42006a5b0065f99f2d973158.tar.gz
Add *.dll to list of files to strip on repack
-rwxr-xr-xdebian/orig-tar.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
index 96b3fefb..0774fc55 100755
--- a/debian/orig-tar.sh
+++ b/debian/orig-tar.sh
@@ -27,7 +27,7 @@ tar -axf ${ORIG_SRC_TAR}
mv ${ORIG_SRC_DIR}* ${DEB_SRC_DIR}
cd ${DEB_SRC_DIR}
find -name Makefile.fpc -execdir sh -c 'rm $(basename {} .fpc)' ';'
-find -regex '.*\.\(a\|or?\|so\.*\|ppu\|compiled\|exe\)' -delete
+find -regex '.*\.\(a\|or?\|so\.*\|ppu\|compiled\|exe\|dll\)' -delete
find -name '*.pp' -exec chmod a-x {} ';'
cd ..
tar -acf ${DEB_SRC_TAR} ${DEB_SRC_DIR}