From b2c52fcf9b12e920abcdc1989701ec7294e3f3e3 Mon Sep 17 00:00:00 2001 From: Toni Gundogdu Date: Fri, 16 Sep 2011 13:30:02 +0300 Subject: [PATCH] mv man1/ -> doc/ --- MANIFEST | 2 +- Makefile.PL | 4 ++-- {man1 => doc/man1}/clive.1.pod | 0 t/clive-Pod.t | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) rename {man1 => doc/man1}/clive.1.pod (100%) diff --git a/MANIFEST b/MANIFEST index 2b477ae..4b867e5 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5,7 +5,7 @@ COPYING examples/cliverc examples/git/hooks/pre-commit Makefile.PL -man1/clive.1.pod +doc/man1/clive.1.pod MANIFEST This list of files NEWS README diff --git a/Makefile.PL b/Makefile.PL index 5005b98..32d8336 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -22,12 +22,12 @@ WriteMakefile( }, MIN_PERL_VERSION => 5.008009, ($] >= 5.005 ? - (ABSTRACT_FROM => 'man1/clive.1.pod', + (ABSTRACT_FROM => 'doc/man1/clive.1.pod', AUTHOR => 'Toni Gundogdu ') : ()), 'LICENSE' => 'gpl', 'EXE_FILES' => ['bin/clive'], 'MAN1PODS' => - {'man1/clive.1.pod' => '$(INST_MAN1DIR)/clive.$(MAN1EXT)'}, + {'doc/man1/clive.1.pod' => '$(INST_MAN1DIR)/clive.$(MAN1EXT)'}, dist => { PREOP => '@if test -f .git/HEAD; then \ git log --stat --name-only --date=short --abbrev-commit \ diff --git a/man1/clive.1.pod b/doc/man1/clive.1.pod similarity index 100% rename from man1/clive.1.pod rename to doc/man1/clive.1.pod diff --git a/t/clive-Pod.t b/t/clive-Pod.t index c0dafa0..3cd712d 100644 --- a/t/clive-Pod.t +++ b/t/clive-Pod.t @@ -6,6 +6,6 @@ use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; -my @poddirs = qw (man1); +my @poddirs = qw(doc/man1); -all_pod_files_ok (all_pod_files (@poddirs)); +all_pod_files_ok(all_pod_files(@poddirs)); -- 2.11.4.GIT