summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-08-20 10:21:06 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-08-20 10:21:06 +0000
commit937be79c5a1a5a3a596601f17546e695dbd32857 (patch)
tree282df1ed322e24059693b0af3245bba88262e4c2 /devel
parentNot a good idea to depend on non-existent teTeX-beta. (diff)
Back out serious breakage introduced by previous commit: you can't use
${SED} and ${AWK} in != statements because they are executed immediately.
Notes
Notes: svn path=/head/; revision=20827
Diffstat (limited to 'devel')
-rw-r--r--devel/ddd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/ddd/Makefile b/devel/ddd/Makefile
index a3ad8fe4a457..4e04e7a92dbd 100644
--- a/devel/ddd/Makefile
+++ b/devel/ddd/Makefile
@@ -4,7 +4,7 @@
# Date created: Tue Jan 28, 1997
# Whom: David O'Brien (obrien@NUXI.com)
#
-# $Id: Makefile,v 1.17 1999/05/25 23:49:02 obrien Exp $
+# $Id: Makefile,v 1.18 1999/08/19 03:09:20 green Exp $
#
DISTNAME= ddd-3.1.6
@@ -27,9 +27,9 @@ REQUIRES_MOTIF= yes
MAN1= ddd.1
.if defined(MOTIF_STATIC)
-LIBXMDIR!= ${ECHO} ${MOTIFLIB} | ${SED} -e 's/\/libXm\.a//g' | ${AWK} '{print $$1}'
+LIBXMDIR!= ${ECHO} ${MOTIFLIB} | sed -e 's/\/libXm\.a//g' | awk '{print $$1}'
.else
-LIBXMDIR!= ${ECHO} ${MOTIFLIB} | ${SED} -e 's/-L//g' | ${AWK} '{print $$1}'
+LIBXMDIR!= ${ECHO} ${MOTIFLIB} | sed -e 's/-L//g' | awk '{print $$1}'
.endif
post-configure: