summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_purge_la.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2018-04-30 11:26:08 +0200
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2018-04-30 11:26:08 +0200
commit907bd31236a1b9ce11702cbd1ec792a07d74ab60 (patch)
tree1d24fdf9810c38e4c54983d65bcfcd6607d4fefd /subr/pkg_install_purge_la.subr
parente7f40a6a3266a5072c7a2a9a75722b7743ca3b02 (diff)
downloadmidipix_build-907bd31236a1b9ce11702cbd1ec792a07d74ab60.tar.bz2
midipix_build-907bd31236a1b9ce11702cbd1ec792a07d74ab60.tar.xz
Correctly (zero-)initialise all locals.
Diffstat (limited to 'subr/pkg_install_purge_la.subr')
-rw-r--r--subr/pkg_install_purge_la.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install_purge_la.subr b/subr/pkg_install_purge_la.subr
index 53559628..01a78cb4 100644
--- a/subr/pkg_install_purge_la.subr
+++ b/subr/pkg_install_purge_la.subr
@@ -3,7 +3,7 @@
#
pkg_install_purge_la() {
- local _la_path;
+ local _la_path="";
for _la_path in $(find "${PKG_DESTDIR}" -type f -name \*.la); do
ex_rtl_fileop rm ${_la_path};
done;