1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
freebsd-ports/devel/icmake/files/patch-exec_bootstrap
Muhammad Moinur Rahman f15c6f8724 devel/icmake: Update version 7.22.01=>9.02.04
- Update MASTERSITES to GITHUB
- Update Homepage to GITHUB Page
- Remove LICENSE_FILE
2018-01-07 23:00:01 +00:00

24 lines
564 B
Plaintext

--- exec/bootstrap.orig 2018-01-07 21:36:21 UTC
+++ exec/bootstrap
@@ -1,6 +1,6 @@
echo Creating icm-exec
-gcc -O2 -g -Wall -DHAVE_GLOB -c *.c
+${CC} ${CFLAGS} -g -DHAVE_GLOB -c *.c
mkdir -p tmp/bin
@@ -8,10 +8,10 @@ NR=0
for x in auks var virtual int list string stack opcodefun builtin
do
cd $x
- gcc -O2 -g -Wall -DHAVE_GLOB -c *.c || exit 1
+ ${CC} ${CFLAGS} -g -DHAVE_GLOB -c *.c || exit 1
cd ..
done
-gcc -o tmp/bin/icm-exec$1 *.o */*.o ../rss/libicrss.a
+${CC} -o tmp/bin/icm-exec$1 *.o */*.o ../rss/libicrss.a
rm *.o */*.o