summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2016-07-25 20:55:35 -0400
committerTim Harder <radhermit@gentoo.org>2016-07-25 20:55:35 -0400
commit26b29b664b76883bdbd84436ef4fce5bed128520 (patch)
treeb9179c08a0486ccda74454eece29c6d6116dfac1 /dev-util/icmake/files
parentgames-emulation/virtualjaguar: updated to EAPI 6, remove deprecated games.ecl... (diff)
downloadgentoo-26b29b664b76883bdbd84436ef4fce5bed128520.tar.gz
gentoo-26b29b664b76883bdbd84436ef4fce5bed128520.tar.bz2
gentoo-26b29b664b76883bdbd84436ef4fce5bed128520.zip
dev-util/icmake: version bump to 9.00.00
Diffstat (limited to 'dev-util/icmake/files')
-rw-r--r--dev-util/icmake/files/icmake-9.00.00-ar.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-util/icmake/files/icmake-9.00.00-ar.patch b/dev-util/icmake/files/icmake-9.00.00-ar.patch
new file mode 100644
index 000000000000..0eff669f8e39
--- /dev/null
+++ b/dev-util/icmake/files/icmake-9.00.00-ar.patch
@@ -0,0 +1,32 @@
+--- icmake/bootstrap/flags
++++ icmake/bootstrap/flags
+@@ -14,3 +14,7 @@
+ if [ "${CC}" == "" ] ; then
+ CC="gcc"
+ fi
++
++if [ "${AR}" == "" ] ; then
++ CC="ar"
++fi
+--- icmake/bootstrap/functions
++++ icmake/bootstrap/functions
+@@ -35,7 +35,7 @@
+
+ echo -n .
+
+- try ar crs ../tmp/lib${program}.a */*.o
++ try ${AR} crs ../tmp/lib${program}.a */*.o
+
+ echo -n .
+
+--- icmake/rss/icm_bootstrap
++++ icmake/rss/icm_bootstrap
+@@ -8,7 +8,7 @@
+ echo -n .
+ try ${CC} -c ${CFLAGS} *.c
+ echo -n .
+-try ar rs ../tmp/libicrss.a *.o
++try ${AR} rs ../tmp/libicrss.a *.o
+ echo -n .
+ rm *.o
+ echo .