* Apply patch from Pawel to avoid using -L in Makefile as it's not available
in older finds.master
parent
b15f37e9e9
commit
f23ebaad2e
|
@ -47,9 +47,9 @@ extra_clean:
|
|||
|
||||
extra_install:
|
||||
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
|
||||
for dir in `find -L basewiki templates -type d ! -regex '.*\.svn.*'`; do \
|
||||
for dir in `find basewiki templates -follow -type d ! -regex '.*\.svn.*'`; do \
|
||||
install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
|
||||
for file in `find -L $$dir -maxdepth 1 -type f`; do \
|
||||
for file in `find $$dir -follow -maxdepth 1 -type f`; do \
|
||||
install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
|
||||
done; \
|
||||
done
|
||||
|
|
|
@ -22,8 +22,10 @@ ikiwiki (2.1) UNRELEASED; urgency=low
|
|||
|
||||
[ Joey Hess ]
|
||||
* Updated Czech translation from Miroslav Kure.
|
||||
* Apply patch from Pawel to avoid using -L in Makefile as it's not available
|
||||
in older finds.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Wed, 09 May 2007 16:01:28 -0400
|
||||
-- Joey Hess <joeyh@debian.org> Thu, 10 May 2007 14:56:07 -0400
|
||||
|
||||
ikiwiki (2.00) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -20,3 +20,5 @@ because it seems that my `find` doesn't support `-L` option. I had to patch
|
|||
done
|
||||
|
||||
-- Pawel
|
||||
|
||||
[[applied|done]], thanks --[[Joey]]
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-05-08 20:47-0400\n"
|
||||
"POT-Creation-Date: 2007-05-10 14:57-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -241,19 +241,19 @@ msgstr ""
|
|||
msgid "All pages are linked to by other pages."
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:147
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:155
|
||||
msgid "Account creation successful. Now you can Login."
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:150
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:158
|
||||
msgid "Error creating account."
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:171
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:179
|
||||
msgid "Failed to send mail"
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:173
|
||||
#: ../IkiWiki/Plugin/passwordauth.pm:181
|
||||
msgid "Your password has been emailed to you."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,11 +563,11 @@ msgstr ""
|
|||
msgid "usage: ikiwiki [options] source dest"
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki.pm:107
|
||||
#: ../IkiWiki.pm:108
|
||||
msgid "Must specify url to wiki with --url when using --cgi"
|
||||
msgstr ""
|
||||
|
||||
#: ../IkiWiki.pm:154 ../IkiWiki.pm:155
|
||||
#: ../IkiWiki.pm:155 ../IkiWiki.pm:156
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,7 +575,7 @@ msgstr ""
|
|||
#. translators: preprocessor directive name,
|
||||
#. translators: the second a page name, the
|
||||
#. translators: third a number.
|
||||
#: ../IkiWiki.pm:631
|
||||
#: ../IkiWiki.pm:632
|
||||
#, perl-format
|
||||
msgid "%s preprocessing loop detected on %s at depth %i"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue