mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
--- lib/Makefile.in.orig 2018-02-03 13:33:56 UTC
|
|
+++ lib/Makefile.in
|
|
@@ -1603,7 +1603,7 @@ install-data: install-data-am
|
|
uninstall: uninstall-am
|
|
|
|
install-am: all-am
|
|
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
+ @$(MAKE) $(AM_MAKEFLAGS) install-data-am
|
|
|
|
installcheck: installcheck-am
|
|
install-strip:
|
|
@@ -1966,11 +1966,11 @@ install-exec-localcharset: all-local
|
|
if test $(GLIBC21) = no; then \
|
|
case '$(host_os)' in \
|
|
darwin[56]*) \
|
|
- need_charset_alias=true ;; \
|
|
+ need_charset_alias=false ;; \
|
|
darwin* | cygwin* | mingw* | pw32* | cegcc*) \
|
|
need_charset_alias=false ;; \
|
|
*) \
|
|
- need_charset_alias=true ;; \
|
|
+ need_charset_alias=false ;; \
|
|
esac ; \
|
|
else \
|
|
need_charset_alias=false ; \
|
|
@@ -1978,7 +1978,7 @@ install-exec-localcharset: all-local
|
|
if $$need_charset_alias; then \
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir) ; \
|
|
fi ; \
|
|
- if test -f $(charset_alias); then \
|
|
+ if false; then \
|
|
sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
|
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
|
rm -f $(charset_tmp) ; \
|
|
@@ -1992,7 +1992,7 @@ install-exec-localcharset: all-local
|
|
|
|
uninstall-local: uninstall-localcharset
|
|
uninstall-localcharset: all-local
|
|
- if test -f $(charset_alias); then \
|
|
+ if false; then \
|
|
sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
|
|
if grep '^# Packages using this file: $$' $(charset_tmp) \
|
|
> /dev/null; then \
|