1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/x11-toolkits/iv/scripts/configure
Paul Traina c095186cb6 Bring InterViews 3.1 port closer to reality... in point of fact, it
-still- doesn't build right, but it's a lot closer.
1994-11-01 03:30:10 +00:00

12 lines
266 B
Bash

#!/bin/sh
#
find ${WRKSRC} -name Makefile -print | xargs rm
xpath=/usr/X11R6
if [ -n $xpath ]; then
xpath=`echo $xpath | sed 's;/bin/imake$;;'`
sed "s;/usr/X386;$xpath;" ${WRKSRC}/makefile >${WRKSRC}/makefile.foo
mv ${WRKSRC}/makefile.foo ${WRKSRC}/makefile
fi