Makefile in 1.4.0_pre14
Stephen Bechard
steve at destek.net
Tue Jun 18 21:16:32 PDT 2002
This is a trivial problem, but just trying to help out.
I recently upgraded to freeside-1.4.0pre14 and I noticed
several errors when I attempted to `make aspdocs`
with a fresh untarred copy of freeside-1.4.0pre14.
The errors were in reference to creating documents in
non-existent sub directories of ./httemplate/docs/man/.
I added the following to the Makefile and it is happy now.
accounting# diff -c Makefile.original Makefile
*** Makefile.original Fri Jun 14 07:44:15 2002
--- Makefile Wed Jun 19 00:00:06 2002
***************
*** 74,88 ****
--- 74,94 ----
htmlman:
[ -e ./httemplate/docs/man ] || mkdir httemplate/docs/man
[ -e ./httemplate/docs/man/bin ] || mkdir httemplate/docs/man/bin
+ [ -e ./httemplate/docs/man/blib ] || mkdir httemplate/docs/man/blib
+ [ -e ./httemplate/docs/man/blib/lib ] || mkdir
httemplate/docs/man/blib/lib
[ -e ./httemplate/docs/man/FS ] || mkdir httemplate/docs/man/FS
[ -e ./httemplate/docs/man/FS/UI ] || mkdir
httemplate/docs/man/FS/UI
+ [ -e ./httemplate/docs/man/FS/part_export ] || mkdir
httemplate/docs/man/FS/part_export
[ -e DONT_REBUILD_DOCS ] || bin/pod2x
forcehtmlman:
[ -e ./httemplate/docs/man ] || mkdir httemplate/docs/man
[ -e ./httemplate/docs/man/bin ] || mkdir httemplate/docs/man/bin
+ [ -e ./httemplate/docs/man/blib ] || mkdir httemplate/docs/man/blib
+ [ -e ./httemplate/docs/man/blib/lib ] || mkdir
httemplate/docs/man/blib/lib
[ -e ./httemplate/docs/man/FS ] || mkdir httemplate/docs/man/FS
[ -e ./httemplate/docs/man/FS/UI ] || mkdir
httemplate/docs/man/FS/UI
+ [ -e ./httemplate/docs/man/FS/part_export ] || mkdir
httemplate/docs/man/FS/part_export
bin/pod2x
Enjoy,
Steve
More information about the freeside-devel
mailing list