mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-06 03:18:23 +02:00
7 lines
187 B
Bash
7 lines
187 B
Bash
#!/bin/sh
|
|
# remove crosswin32 additions from fpc.cfg
|
|
cat /etc/fpc.cfg | egrep -v '# fpc_crosswin32|-XPfpc-i386-win32-' > /etc/fpc.cfg.rpmtemp
|
|
mv /etc/fpc.cfg.rpmtemp /etc/fpc.cfg
|
|
# end.
|
|
|