diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-26 22:58:01 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-26 22:58:01 +0000 |
commit | 80b0165ff81a91cc7b32fb2cf057c045352f7849 (patch) | |
tree | 790aecb0878307dcd8cf43387f3682e14ade9002 | |
parent | 4fcc9d92ab4958ea7cc85a1b3897c5141d863af1 (diff) | |
download | ikiwiki-80b0165ff81a91cc7b32fb2cf057c045352f7849.tar ikiwiki-80b0165ff81a91cc7b32fb2cf057c045352f7849.tar.gz |
* Avoid .svn directories when installing from svn checkout.
-rwxr-xr-x | Makefile.PL | 8 | ||||
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | doc/bugs/installing_from_svn_copies_.svn_directories.mdwn | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/Makefile.PL b/Makefile.PL index 5bd1d6493..4f6b05179 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -46,11 +46,9 @@ extra_clean: $(MAKE) -C po clean extra_install: - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - $(CP) -a templates/* $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki - $(CP) -aL basewiki/* $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki + install -d $(DESTDIR)$(PREFIX)/share/ikiwiki + find basewiki templates \( -type f -or -type l \) ! -regex '.*\.svn.*' \ + -exec cp --parents -aL {} $(DESTDIR)$(PREFIX)/share/ikiwiki \; install -d $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1 diff --git a/debian/changelog b/debian/changelog index be764ee57..d0b481a34 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,8 +19,9 @@ ikiwiki (1.51) UNRELEASED; urgency=low the footer border. * Due to template changes and style sheet changes that depend on them, wiki rebuilds are recommended on upgrade to this version. + * Avoid .svn directories when installing from svn checkout. - -- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 15:48:03 -0400 + -- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 18:47:38 -0400 ikiwiki (1.50) unstable; urgency=low diff --git a/doc/bugs/installing_from_svn_copies_.svn_directories.mdwn b/doc/bugs/installing_from_svn_copies_.svn_directories.mdwn index a1c83269c..dec916044 100644 --- a/doc/bugs/installing_from_svn_copies_.svn_directories.mdwn +++ b/doc/bugs/installing_from_svn_copies_.svn_directories.mdwn @@ -23,4 +23,6 @@ permission denied errors when I tried to make a change and install again. > The .svn directories can be avoided in the deb by setting > DH_ALWAYS_EXCLUDE=.svn in the environment before building. > I prefer to use that kind of hack exterior to a package rather than -> putting in RCS-specific exclude hacks. --[[Joey]] +> putting in RCS-specific exclude hacks. +> +> [[Done]] for the install from svn checkout case. --[[Joey]] |