diff options
author | obrien <obrien@FreeBSD.org> | 2000-08-26 23:27:52 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-08-26 23:27:52 +0000 |
commit | 03c24c1e66f2736752c5452c113b0298fe157d73 (patch) | |
tree | df60af7f8527b06c062d5bd1e72b27ceb8573851 /devel/ddd | |
parent | 30d13c1a2bc6246e87246de8ca9af2a801895861 (diff) | |
download | FreeBSD-ports-03c24c1e66f2736752c5452c113b0298fe157d73.zip FreeBSD-ports-03c24c1e66f2736752c5452c113b0298fe157d73.tar.gz |
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.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Diffstat (limited to 'devel/ddd')
-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 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} |