mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 20:50:31 -04:00
43 lines
1.5 KiB
Text
43 lines
1.5 KiB
Text
--- lib/Makefile.in.orig 2011-09-20 10:20:00.632757147 +0200
|
|
+++ lib/Makefile.in 2011-09-20 10:22:27.434783661 +0200
|
|
@@ -1376,8 +1376,6 @@
|
|
libgnu_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined $(INET_PTON_LIB) \
|
|
$(LIBSOCKET) $(LIB_CLOCK_GETTIME) $(LTLIBICONV) $(LTLIBINTL)
|
|
GPERF = gperf
|
|
-charset_alias = $(DESTDIR)$(libdir)/charset.alias
|
|
-charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
|
|
|
|
# Because this Makefile snippet defines a variable used by other
|
|
# gnulib Makefile snippets, it must be present in all Makefile.am that
|
|
@@ -2303,31 +2301,10 @@
|
|
fi ; \
|
|
if $$need_charset_alias; then \
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir) ; \
|
|
- fi ; \
|
|
- if test -f $(charset_alias); then \
|
|
- sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
|
|
- $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
|
- rm -f $(charset_tmp) ; \
|
|
- else \
|
|
- if $$need_charset_alias; then \
|
|
- sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
|
|
- $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
|
- rm -f $(charset_tmp) ; \
|
|
- fi ; \
|
|
fi
|
|
|
|
uninstall-local: uninstall-localcharset
|
|
uninstall-localcharset: all-local
|
|
- if test -f $(charset_alias); then \
|
|
- sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
|
|
- if grep '^# Packages using this file: $$' $(charset_tmp) \
|
|
- > /dev/null; then \
|
|
- rm -f $(charset_alias); \
|
|
- else \
|
|
- $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
|
|
- fi; \
|
|
- rm -f $(charset_tmp); \
|
|
- fi
|
|
|
|
charset.alias: config.charset
|
|
$(AM_V_GEN)rm -f t-$@ $@ && \
|