diff options
author | Keith Packard <keithp@keithp.com> | 2018-02-20 15:33:10 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-02-20 15:43:19 -0800 |
commit | 6720940e1d55ee0073f99c325e73a01b369452cf (patch) | |
tree | c93d8ddf10a4c6b0121d6b92a86ac4422bb8ef2b /Makefile.am | |
parent | fd31dca92250e559c286ee80c35a9125a9f8fd05 (diff) |
Fix Makefile.am definition of XCalibrate headers
A missing backslash caused the XCalibrateinclude_HEADERS value to be
empty. Thanks. autotools, for not detecting this.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index b5cf919..26f68e4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,7 @@ bigreqsprotopkgconfig_DATA = bigreqsproto.pc if LEGACY XCalibrateincludedir = $(includedir)/X11/extensions -XCalibrateinclude_HEADERS = +XCalibrateinclude_HEADERS = \ include/X11/extensions/xcalibrateproto.h \ include/X11/extensions/xcalibratewire.h @@ -198,6 +198,7 @@ printproto_EXTRA_DIST = printproto.pc.in \ specs/xp_protoIX.doc \ specs/xp_protoTOC.doc \ specs/xp_proto_cov.mif +endif SED = sed @@ -219,7 +220,6 @@ SUFFIXES = .$(MISC_MAN_SUFFIX) .man .man.$(MISC_MAN_SUFFIX): man $(MKDIR_P) man $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ -endif randrdir = $(includedir)/X11/extensions randr_HEADERS = \ |