diff options
author | knu <knu@FreeBSD.org> | 2002-01-29 20:14:18 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-01-29 20:14:18 +0800 |
commit | b42679b22abe748375dc103dc7af39b174da3d87 (patch) | |
tree | 6f292c9bbc0306f65069d5ad6040e8e4e291c376 /x11/XFree86-4 | |
parent | 4e5525b4be19a5420da69e36d65240ad0ea3056b (diff) | |
download | freebsd-ports-gnome-b42679b22abe748375dc103dc7af39b174da3d87.tar.gz freebsd-ports-gnome-b42679b22abe748375dc103dc7af39b174da3d87.tar.zst freebsd-ports-gnome-b42679b22abe748375dc103dc7af39b174da3d87.zip |
Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r-- | x11/XFree86-4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/XFree86-4/Makefile b/x11/XFree86-4/Makefile index b513b4b2cb5d..d144e509e2af 100644 --- a/x11/XFree86-4/Makefile +++ b/x11/XFree86-4/Makefile @@ -54,7 +54,7 @@ PLIST= ${PKGDIR}/pkg-plist.alpha .endif pre-configure: - @if ${ECHO} "$(CFLAGS)" |${GREP} -q O[3456789]; then \ + @if ${ECHO_CMD} "$(CFLAGS)" |${GREP} -q O[3456789]; then \ ${ECHO} "XFree86-4 with thread support does not build with optimization"; \ ${ECHO} "flags different from O or -O2"; \ ${FALSE}; fi @@ -124,7 +124,7 @@ post-patch: @${MV} ${WRKDIR}/mgasource/mga-${MGA_DRIVER_DIR}/mga \ ${WRKSRC}/programs/Xserver/hw/xfree86/drivers @${CP} ${WRKSRC}/config/cf/xf86site.def ${WRKSRC}/config/cf/host.def - @${ECHO} "#define HaveMatroxHal YES" >> ${WRKSRC}/config/cf/host.def + @${ECHO_CMD} "#define HaveMatroxHal YES" >> ${WRKSRC}/config/cf/host.def @${PERL} -pi.orig -ne 's!(#define PCI_CHIP_MGAG400\s+0x0525)!\1\n#define PCI_CHIP_MGAG550 0x2527\n!; \ s!({PCI_CHIP_MGAG400,\s+"MGA G400 AGP",0},)!\1\n{PCI_CHIP_MGAG550, "MGA G550 AGP", 0},\n!' \ ${WRKSRC}/programs/Xserver/hw/xfree86/common/xf86PciInfo.h |