diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2011-09-29 09:02:41 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2011-09-29 09:02:41 +0200 |
commit | df41fd1716a16baa47b388c588eb572be1bcdb30 (patch) | |
tree | 6fecb325b493641bbfececd317d78b3c33b353b9 | |
parent | 58ae5f7ec98bf360ab5cc9a2aeab7d4349083de7 (diff) | |
download | smokeping-df41fd1716a16baa47b388c588eb572be1bcdb30.tar.gz smokeping-df41fd1716a16baa47b388c588eb572be1bcdb30.tar.xz |
improve release system
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index a584507..d09eb8d 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -50,8 +50,8 @@ MAN1 = $(addsuffix .1,$(PROGBASE)) POD2MAN = pod2man --release=$(VERSION) --center=SmokePing $< # we go to this trouble to ensure that MAKEPOD only uses modules in the installation directory -MAKEPOD= PERL5LIB=$(PERL5LIB) $(PERL) -I../thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --makepod -GENEX= PERL5LIB=$(PERL5LIB) $(PERL) -I../thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --gen-examples +MAKEPOD= PERL5LIB=$(PERL5LIB) $(PERL) -I$(DESTDIR)$(prefix)/thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --makepod +GENEX= PERL5LIB=$(PERL5LIB) $(PERL) -I$(DESTDIR)$(prefix)/thirdparty/lib/perl5 -I../lib -mSmokeping -e 'Smokeping::main()' -- --gen-examples %.7: %.pod $(AM_V_GEN)$(POD2MAN) --section 7 > $@ |