summaryrefslogtreecommitdiff
path: root/external/glew/glew-ar-lto.patch.1
diff options
context:
space:
mode:
Diffstat (limited to 'external/glew/glew-ar-lto.patch.1')
-rw-r--r--external/glew/glew-ar-lto.patch.128
1 files changed, 0 insertions, 28 deletions
diff --git a/external/glew/glew-ar-lto.patch.1 b/external/glew/glew-ar-lto.patch.1
deleted file mode 100644
index 36af0a0f39f5..000000000000
--- a/external/glew/glew-ar-lto.patch.1
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/Makefile.orig 2016-01-19 14:38:00.124312444 -0500
-+++ b/Makefile 2016-01-19 14:39:00.728011296 -0500
-@@ -67,6 +67,7 @@
- # - use LN= on gmake command-line
-
- AR ?= ar
-+AR_FLAGS ?= cr
- INSTALL ?= install
- STRIP ?= strip
- RM ?= rm -f
-@@ -106,7 +107,7 @@
- mkdir lib
-
- lib/$(LIB.STATIC): $(LIB.OBJS)
-- $(AR) cr $@ $^
-+ $(AR) $(AR_FLAGS) $@ $^
- ifneq ($(STRIP),)
- $(STRIP) -x $@
- endif
-@@ -150,7 +151,7 @@
- glew.lib.mx: lib lib/$(LIB.SHARED.MX) lib/$(LIB.STATIC.MX) glewmx.pc
-
- lib/$(LIB.STATIC.MX): $(LIB.OBJS.MX)
-- $(AR) cr $@ $^
-+ $(AR) $(AR_FLAGS) $@ $^
-
- lib/$(LIB.SHARED.MX): $(LIB.SOBJS.MX)
- $(LD) $(LDFLAGS.SO.MX) -o $@ $^ $(LIB.LDFLAGS) $(LIB.LIBS)