mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
77c0fcc55f
- Take maintainership PR: ports/95793 Submitted by: Rainer Alves <rainer.alves@gmail.com>
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
--- Makefile.in.orig Tue Aug 31 11:59:42 2004
|
|
+++ Makefile.in Sat Apr 15 03:04:17 2006
|
|
@@ -70,7 +70,7 @@
|
|
|
|
JPEGDIR = ./jpeg-6b
|
|
JPEGINC = -I$(JPEGDIR)
|
|
-JPEGLIB = -L$(JPEGDIR) -ljpeg
|
|
+JPEGLIB = -L$(JPEGDIR) -ljpeg -lcrypto
|
|
JPEGDEP = $(JPEGDIR)/libjpeg.a
|
|
|
|
FILEDIR = ./file
|
|
@@ -330,19 +330,23 @@
|
|
@set fnord $(MAKEFLAGS); amf=$$2; \
|
|
dot_seen=no; \
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
- list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
- echo "Making $$target in $$subdir"; \
|
|
- if test "$$subdir" = "."; then \
|
|
- dot_seen=yes; \
|
|
- local_target="$$target-am"; \
|
|
- else \
|
|
- local_target="$$target"; \
|
|
+ if test "$$target" = "install"; then \
|
|
+ ($(MAKE) $(AM_MAKEFLAGS) $$target-am) || exit 1; \
|
|
+ else \
|
|
+ list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
+ echo "Making $$target in $$subdir"; \
|
|
+ if test "$$subdir" = "."; then \
|
|
+ dot_seen=yes; \
|
|
+ local_target="$$target-am"; \
|
|
+ else \
|
|
+ local_target="$$target"; \
|
|
+ fi; \
|
|
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
|
+ done; \
|
|
+ if test "$$dot_seen" = "no"; then \
|
|
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
fi; \
|
|
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
- || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
|
- done; \
|
|
- if test "$$dot_seen" = "no"; then \
|
|
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
fi; test -z "$$fail"
|
|
|
|
mostlyclean-recursive clean-recursive distclean-recursive \
|