mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
7392919036
- Regenerate patches PR: 223252 Submitted by: yasu@utahime.org
51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
--- lib/Makefile.in.orig 2003-03-12 16:14:41 UTC
|
|
+++ lib/Makefile.in
|
|
@@ -196,12 +196,12 @@ all: all-localdir all-subdirs
|
|
@LITEONLY_FALSE@all-localdir: $(LIB).la $(LITELIB).la $(SAMPLES)
|
|
|
|
$(LIB).la: $(OBJS)
|
|
- $(LIBTOOL) --mode=link $(LD) $(LDFLAGS) -o $@ \
|
|
+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ \
|
|
-version-info $(LIB_CURRENT):$(LIB_REVISION):$(LIB_AGE) \
|
|
-rpath $(libdir) $(OBJS)
|
|
|
|
$(TESTLIB).la: $(OBJS)
|
|
- $(LIBTOOL) --mode=link $(LD) $(LDFLAGS) -o $@ \
|
|
+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ \
|
|
-version-info $(LIB_CURRENT):$(LIB_REVISION):$(LIB_AGE) \
|
|
-rpath $(libdir) $(OBJS)
|
|
|
|
@@ -219,12 +219,12 @@ resconflite.lo: resconf.c
|
|
-c $(srcdir)/resconf.c
|
|
|
|
$(LITELIB).la: $(LITELIB_OBJS)
|
|
- $(LIBTOOL) --mode=link $(LD) $(LDFLAGS) -o $@ \
|
|
+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ \
|
|
-version-info $(LIB_CURRENT):$(LIB_REVISION):$(LIB_AGE) \
|
|
-rpath $(libdir) $(LITELIB_OBJS)
|
|
|
|
$(TESTLITELIB).la: $(LITELIB_OBJS)
|
|
- $(LIBTOOL) --mode=link $(LD) $(LDFLAGS) -o $@ \
|
|
+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ \
|
|
-version-info $(LIB_CURRENT):$(LIB_REVISION):$(LIB_AGE) \
|
|
-rpath $(libdir) $(LITELIB_OBJS)
|
|
|
|
@@ -241,7 +241,7 @@ install: install-localdir install-subdir
|
|
|
|
install-common:
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
|
|
- $(LIBTOOL) $(INSTALL_DATA) $(LITELIB).la \
|
|
+ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LITELIB).la \
|
|
$(DESTDIR)$(libdir)/$(LITELIB).la
|
|
-[ -f $(DESTDIR)$(libdir)/$(LITELIB).a ] \
|
|
&& $(RANLIB) $(DESTDIR)$(libdir)/$(LITELIB).a
|
|
@@ -262,7 +262,7 @@ install-common:
|
|
|
|
install-nolite:
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
|
|
- $(LIBTOOL) $(INSTALL_DATA) $(LIB).la \
|
|
+ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIB).la \
|
|
$(DESTDIR)$(libdir)/$(LIB).la
|
|
-[ -f $(DESTDIR)$(libdir)/$(LIB).a ] \
|
|
&& $(RANLIB) $(DESTDIR)$(libdir)/$(LIB).a
|