diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-08-26 23:27:52 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-08-26 23:27:52 +0000 |
commit | dc7fa8d39ca59f8f9c40cd729e1d4d63b36c9f81 (patch) | |
tree | 5f4132691237ddd8a5fe9b2b9b25f347d85eddea /devel/ddd/Makefile | |
parent | * This port is no longer restricted. (diff) |
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.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Notes
Notes:
svn path=/head/; revision=32010
Diffstat (limited to 'devel/ddd/Makefile')
-rw-r--r-- | devel/ddd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ddd/Makefile b/devel/ddd/Makefile index e500c3b9bb05..055f68239972 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} |