diff options
author | Sam James <sam@gentoo.org> | 2020-12-20 06:28:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-12-20 06:28:29 +0000 |
commit | 970e7ce14a0d9d4433000bed5d6b15c63c3db498 (patch) | |
tree | 26d3a3bd29d45e2fd6ffc8a3f64a2ce28680f0d6 /sys-apps/moreutils/files | |
parent | net-wireless/hostapd: cleanup old (diff) | |
download | gentoo-970e7ce14a0d9d4433000bed5d6b15c63c3db498.tar.gz gentoo-970e7ce14a0d9d4433000bed5d6b15c63c3db498.tar.bz2 gentoo-970e7ce14a0d9d4433000bed5d6b15c63c3db498.zip |
sys-apps/moreutils: cleanup old
Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/moreutils/files')
-rw-r--r-- | sys-apps/moreutils/files/moreutils-0.63-respect-env.patch | 23 |
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) |