summaryrefslogtreecommitdiff
path: root/sys-apps/moreutils/files/moreutils-0.63-respect-env.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/moreutils/files/moreutils-0.63-respect-env.patch')
-rw-r--r--sys-apps/moreutils/files/moreutils-0.63-respect-env.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys-apps/moreutils/files/moreutils-0.63-respect-env.patch b/sys-apps/moreutils/files/moreutils-0.63-respect-env.patch
deleted file mode 100644
index 45f85b1988e5..000000000000
--- a/sys-apps/moreutils/files/moreutils-0.63-respect-env.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/is_utf8/Makefile b/is_utf8/Makefile
-index 4ebf8be..f0a111e 100644
---- a/is_utf8/Makefile
-+++ b/is_utf8/Makefile
-@@ -37,14 +37,14 @@ LINKERNAME = lib$(NAME).so
- SONAME = $(LINKERNAME).$(VERSION)
- REALNAME = $(SONAME).$(MINOR).$(RELEASE)
-
--CC = gcc
--CFLAGS = -O3 -Wextra -Wall -ansi -Wstrict-prototypes
-+CC ?= gcc
-+CFLAGS ?= -O3 -Wextra -Wall -ansi -Wstrict-prototypes
-
- $(NAME): $(OBJ)
-- $(CC) $(CFLAGS) -o $(NAME) $(OBJ)
-+ $(CC) $(CFLAGS) -o $(NAME) $(OBJ) $(LDFLAGS)
-
- IS_UTF8_LIB:
-- $(CC) --shared -fPIC $(CFLAGS) $(LIB_SRC) -o $(LINKERNAME)
-+ $(CC) --shared -fPIC $(CFLAGS) $(LDFLAGS) $(LIB_SRC) -o $(LINKERNAME)
-
- all:
- @make $(NAME)