mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
e5c90a2538
Modula-3 compiler and runtime system for people who just want to build CVSup. Smaller distfiles! Faster builds! No runtime dependencies! Less memory usage! No more RTHeapDepC.c problems! Smoother skin and glossier fur! (Well, most of those things.)
10 lines
246 B
Bash
10 lines
246 B
Bash
#! /bin/sh
|
|
|
|
cfg=${WRKSRC}/m3config/src/${TARGET}
|
|
cp -p ${cfg} ${cfg}.bak || exit
|
|
sed \
|
|
-e "/^INSTALL_ROOT = /s|\".*\"|\"${PREFIX}\"|" \
|
|
-e "/^X11ROOT = /s|\".*\"|\"${X11BASE}/lib\"|" \
|
|
${cfg} > ${cfg}.tmp || exit
|
|
mv ${cfg}.tmp ${cfg}
|