summaryrefslogtreecommitdiff
path: root/src/configure.in
diff options
context:
space:
mode:
authorMarc G. Fournier1997-04-12 10:35:49 +0000
committerMarc G. Fournier1997-04-12 10:35:49 +0000
commitcecfd642f5b0305b873fc28c7723728f6aded39c (patch)
tree8b904f7bf2788d6bbfbd6ca927892f17355f5603 /src/configure.in
parent09a5dabc30e979431cddec7466d079e8c7d76dcd (diff)
Make sure that Makefile.${PORTNAME} is link'd and that teh port/*.h
file that has moved to include is also link'd properly
Diffstat (limited to 'src/configure.in')
-rw-r--r--src/configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in
index d898b2b952f..47cbc6f12e0 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -229,7 +229,8 @@ dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
-AC_LINK_FILES(port/${PORTNAME}.h, include/os.h)
+AC_LINK_FILES(include/port/${PORTNAME}.h, include/os.h)
+AC_LINK_FILES(makefiles/Makefile.${PORTNAME}, Makefile.port)
AC_SUBST(PORTNAME)
AC_SUBST(TR)
AC_SUBST(LDFLAGS)