94e8a384a5
Includes a fix for CVE-2011-0465, to which OpenBSD is not vulnerable, since dhclient will reject any hostname option containing invalid characters like $ or `
13 lines
338 B
Makefile
13 lines
338 B
Makefile
|
|
appmandir = $(APP_MAN_DIR)
|
|
appman_PRE = xrdb.man
|
|
appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX))
|
|
|
|
EXTRA_DIST = $(appman_PRE)
|
|
CLEANFILES = $(appman_DATA)
|
|
SUFFIXES = .$(APP_MAN_SUFFIX) .man
|
|
|
|
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
|
|
.man.$(APP_MAN_SUFFIX):
|
|
$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
|