diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-18 07:18:21 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-10-18 07:18:21 +0000 |
commit | 79e6ac79f983b6cbd88a868dfd2235d9cbe75e8b (patch) | |
tree | 62b71240f608eb68ce154241ac5ea6bb745651c4 /hw | |
parent | fb282ef43a1936dcdefa57f16a8363b2adaf983b (diff) |
Don't use $< in explicit rules since neither BSD nor Solaris make allow
that.
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/utils/xorgcfg/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/utils/xorgcfg/Makefile.am b/hw/xfree86/utils/xorgcfg/Makefile.am index 1444f1ce6..2c6bcaea3 100644 --- a/hw/xfree86/utils/xorgcfg/Makefile.am +++ b/hw/xfree86/utils/xorgcfg/Makefile.am @@ -126,7 +126,7 @@ CPP_FILES_FLAGS = -D__VENDORNAME__="@VENDOR_STRING@" \ # dear automake: it would be really nice if you would actually put things into # .SUFFIXES so i wouldnt' have to do this. XOrgCfg: XOrgCfg.pre - $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < $< | $(CPP_SED_MAGIC) > $@ + $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < XOrgCfg.pre | $(CPP_SED_MAGIC) > $@ # Man page man1_MANS = xorgcfg.man |