You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jffi/files/jffi-1.3.6-GNUmakefile.patch

27 lines
740 B

diff --git a/jni/GNUmakefile b/jni/GNUmakefile
index c0f298c..457626f 100755
--- a/jni/GNUmakefile
+++ b/jni/GNUmakefile
@@ -278,16 +278,16 @@ debug:
@echo "OBJS=$(OBJS)"
$(LIBJFFI): $(OBJS) $(LIBFFI_LIBS)
- $(CC) -o $@ $(LDFLAGS) $(SOFLAGS) $(OBJS) $(LIBFFI) $(LIBS)
+ $(CC) -o $@ $(LDFLAGS) $(SOFLAGS) $(OBJS) $(LIBFFI) $(LIBS) $(LIBFFI_LIBS)
$(STRIP) $@
$(BUILD_DIR)/%.o : $(SRC_DIR)/%.c $(wildcard $(JFFI_SRC_DIR)/*.h)
- @mkdir -p $(@D)
- @$(CCACHE) $(CC) $(CFLAGS) -c $< -o $@
+ mkdir -p $(@D)
+ $(CCACHE) $(CC) $(CFLAGS) -c $< -o $@
$(BUILD_DIR)/%.o : $(SRC_DIR)/%.S $(wildcard $(JFFI_SRC_DIR)/*.h)
- @mkdir -p $(@D)
- @$(CC) $(CFLAGS) -o $@ -c $<
+ mkdir -p $(@D)
+ $(CC) $(CFLAGS) -o $@ -c $<
$(OBJS) : $(LIBFFI)