summaryrefslogtreecommitdiff
path: root/man/Makemodule.am
Commit message (Collapse)AuthorAgeFilesLines
* Remove the attr.5 man page (moved to man-pages)xattratAndreas Gruenbacher2015-04-221-1/+0
| | | | | | The attr.5 page is part of the extended attribute system call documentation, which has been moved into the man-pages package. Move the attr.5 page there as well.
* Remove the section 2 man pagesAndreas Gruenbacher2015-04-151-3/+0
| | | | | | The section 2 man pages have long since been added to the man-pages package which documents all system calls; they were disabled in attr by default since January 2014. Get rid of them here.
* disable installation of man(2) pages by defaultMike Frysinger2014-01-091-0/+2
| | | | | | | | | Normally the Linux man-pags project maintains pages for all Linux system calls, and they've long ago added pages for these. That means distros trying to install both hit collisions. Add a flag so people can still enable them if they want, but default to off since the man-pages project covers things.
* modernize build systemMike Frysinger2014-01-091-0/+27
This deletes the hand rolled build system and replaces it entirely with autotools. The overall diffstat shows that this is a clear win, and it makes the package build/install like every other autotool package out there which makes the lives of distro maintainers a lot easier. This should also be faster by virtue of using a non-recursive build. Things to note: - to generate autotools: ./autogen.sh - to see full compile output: make V=1 - to build specific targets: make attr getfattr ... - to run tests: make check - to create a release: make distcheck -j Other non-developer things: - the xattr.conf file is now installed into sysconfdir by default - man pages are no longer compressed as this is uncommon in the autotools world and distros don't need it anyways (they already handle it automatically for most pakages) - the minor # of the shared library is now based on the package version so it'll be much bigger ... this isn't a problem, and is actually a bugfix (older releases didn't change when they should have) (Again, this is all using the standard autotool targets.)