diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-10-06 16:44:37 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-10-06 16:44:37 -0700 |
commit | 932965298c244553f303fab3bdf23941cc40bb23 (patch) | |
tree | c3a4e5817bbad89c8e6d0a5939f6f46de631dd3c /man/Makefile.am | |
parent | f591196271e53c64e27cf41e5b6ae844a480cb3d (diff) |
Use $prefix & $ICONDIR settings from configure for default path in manpage
(Stop hardcoding /usr/X11R6 & /usr/share in the paths shown.)
Diffstat (limited to 'man/Makefile.am')
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 267572d..725a676 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -15,4 +15,4 @@ XORGRELSTRING = @PACKAGE_STRING@ .man.$(LIB_MAN_SUFFIX): -rm -f $@ - sed 's/__xorgversion__/"$(XORGRELSTRING)"/; s/__LIB_MAN_SUFFIX__/$(LIB_MAN_SUFFIX)/' < $< > $@ + sed 's/__xorgversion__/"$(XORGRELSTRING)"/; s/__LIB_MAN_SUFFIX__/$(LIB_MAN_SUFFIX)/; s%__prefix__%$(prefix)%g; s%__ICONDIR__%$(ICONDIR)%g' < $< > $@ |