diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-31 05:50:57 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-31 05:50:57 -0700 |
commit | 0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd (patch) | |
tree | f6b349b266063fb49f34f797b615519bcc502ecb /Makefile | |
parent | ed78c198eaeefa3a3cadfedd8ee1fa5650f466e6 (diff) | |
download | txr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.tar.gz txr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.tar.bz2 txr-0fe9b6ac5cc2f57275dcaf721636b7a365e9b3fd.zip |
Fix broken out-of-tree build.
Reported by Marco Wahl. When building in a separate directory,
the y.tab.h file isn't found because the current directory is
not searched by the compiler. It searches only the original
source tree and the local config directory.
* Makefile (TXR_CFLAGS): We must have . in the include
file search path otherwise files can only find y.tab.h
when it's in the same directory where they are.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -28,7 +28,8 @@ VERBOSE := TXR_CFLAGS := $(CFLAGS) -TXR_CFLAGS += -iquote $(conf_dir) $(if $(top_srcdir),-iquote $(top_srcdir)) \ +TXR_CFLAGS += -iquote $(conf_dir) \ + -iquote . $(if $(top_srcdir), -iquote $(top_srcdir)) \ $(LANG_FLAGS) $(DIAG_FLAGS) \ $(DBG_FLAGS) $(PLATFORM_CFLAGS) $(EXTRA_FLAGS) TXR_CFLAGS += $(filter-out $(REMOVE_FLAGS),$(TXR_CFLAGS)) |