diff options
author | recht <recht> | 2004-08-14 17:13:27 +0000 |
---|---|---|
committer | recht <recht> | 2004-08-14 17:13:27 +0000 |
commit | a2e5de69073af69db59e4c21b92df558e8b75c6b (patch) | |
tree | 22f59175cc01b09140460a79cd67acde41da22be /meta-pkgs/xorg | |
parent | 24ce0619e288b9b66573452ca0dbe4d5dfb570be (diff) | |
download | pkgsrc-a2e5de69073af69db59e4c21b92df558e8b75c6b.tar.gz |
Add substitutions for @_COMPILER_LD_FLAG@ and @RPATH_FLAG@ missed
in my previous commit.
Noted by FUKAUMI Naoki on tech-pkg@.
Diffstat (limited to 'meta-pkgs/xorg')
-rw-r--r-- | meta-pkgs/xorg/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-pkgs/xorg/Makefile.common b/meta-pkgs/xorg/Makefile.common index 2377f102b60..a6887e8ca60 100644 --- a/meta-pkgs/xorg/Makefile.common +++ b/meta-pkgs/xorg/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2004/07/30 08:24:20 xtraeme Exp $ +# $NetBSD: Makefile.common,v 1.6 2004/08/14 17:13:27 recht Exp $ # # XBUILD_DIRS is the group of directories under ${WRKSRC} that will # be built in. @@ -163,6 +163,8 @@ post-extract: -e "s|@LOCALBASE@|${LOCALBASE}|g" \ -e "s|@LDFLAGS@|${GLOBAL_LDFLAGS}|g" \ -e "s|@WRKSRC@|${WRKSRC}|g" \ + -e "s|@_COMPILER_LD_FLAG@|${_COMPILER_LD_FLAG}|g" \ + -e "s|@RPATH_FLAG@|${RPATH_FLAG}|g" \ ${FILESDIR}/host.def > ${WRKSRC}/config/cf/host.def @${LN} -sf ${X11ROOT}/bin/gccmakedep ${WRKSRC}/config/util @${LN} -sf ${X11ROOT}/bin/revpath ${WRKSRC}/config/util |