diff options
author | Amitai Schleier <schmonz-web-ikiwiki@schmonz.com> | 2018-03-02 14:13:05 -0500 |
---|---|---|
committer | Amitai Schleier <schmonz-web-ikiwiki@schmonz.com> | 2018-03-02 14:13:05 -0500 |
commit | 5051e1ae8149c28df2b2316fbe0923ba7d480035 (patch) | |
tree | 242bf160e8bbac2cb4f85075d263197a6bdbe863 /po | |
parent | 5ee60968b966f605eb3b0c3119e5366e57b745b8 (diff) | |
download | ikiwiki-5051e1ae8149c28df2b2316fbe0923ba7d480035.tar ikiwiki-5051e1ae8149c28df2b2316fbe0923ba7d480035.tar.gz |
Avoid unexpected full paths from find(1).
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index b71bb8b91..bd218c6e1 100644 --- a/po/Makefile +++ b/po/Makefile @@ -22,7 +22,7 @@ install: all # Underlay translation via po files that go in special per-language # underlays. - for file in `cd underlays && find . -type f -name \*.po`; do \ + for file in `find underlays -type f -name \*.po | sed -e 's|^underlays/||'`; do \ lang=`echo $$file | sed -e 's/.po$$//' -e 's/.*\\.//'`; \ dir=`dirname "$(DESTDIR)$(PREFIX)/share/ikiwiki/po/$$lang/$$file"`; \ install -d $$dir; \ |