# HG changeset patch # User james # Date 1055366475 0 # Node ID 84bef38b39b6e172389f667e74b17e191ac95915 # Parent e0ef785d50b3695e9025659a369af580a2f553e3 [xemacs-hg @ 2003-06-11 21:21:13 by james] Fix module building with FreeBSD make while avoiding the previous solution, which broke module building with Solaris make. diff -r e0ef785d50b3 -r 84bef38b39b6 modules/ChangeLog --- a/modules/ChangeLog Tue Jun 10 21:52:24 2003 +0000 +++ b/modules/ChangeLog Wed Jun 11 21:21:15 2003 +0000 @@ -1,3 +1,8 @@ +2003-06-11 Jerry James + + * common/Makefile.common: The last change re-broke FreeBSD module + building. Expand srcdir in SRC_SRCS with configure to fix it. + 2003-06-10 Jerry James * common/Makefile.common: Change GNUish := to =. diff -r e0ef785d50b3 -r 84bef38b39b6 modules/common/Makefile.common --- a/modules/common/Makefile.common Tue Jun 10 21:52:24 2003 +0000 +++ b/modules/common/Makefile.common Wed Jun 11 21:21:15 2003 +0000 @@ -44,7 +44,7 @@ srcdir=@srcdir@ VPATH=@srcdir@ -SRC_SRCS=$(SRCS:%=$(srcdir)/%) +SRC_SRCS=$(SRCS:%=@srcdir@/%) OBJS=$(SRCS:.c=.o) MODCC=@MOD_CC@