From 03c24c1e66f2736752c5452c113b0298fe157d73 Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 26 Aug 2000 23:27:52 +0000 Subject: Fix breakage caused by sobomax in rev 1.30. Note you _CANNOT_ use ${SED} and ${AWK} in "!=" lines. I wish people would STOP running `portlint' on this Makefile and blindly accpeting its output w/o understanding it. To quote Henry Spencer: I Thou shalt run lint frequently and study its pronouncements with care, for verily its perception and judgement oft exceed thine. ..snip.. ``Study'' doth not mean mindless zeal to eradicate every byte of lint output--if for no other reason, because thou just canst not shut it up about some things--but that thou should know the cause of its unhappiness and understand what worrisome sign it tries to speak of. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --- devel/ddd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devel/ddd') diff --git a/devel/ddd/Makefile b/devel/ddd/Makefile index e500c3b..055f682 100644 --- a/devel/ddd/Makefile +++ b/devel/ddd/Makefile @@ -26,9 +26,9 @@ MAN1= ddd.1 .if defined(MOTIFLIB) .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 .else LIBXMDIR= ${X11BASE} -- cgit v1.1