Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/mk Fix a bogon that caused some symlinks to not be ins...



details:   https://anonhg.NetBSD.org/src/rev/7aed68c2f3a7
branches:  trunk
changeset: 481175:7aed68c2f3a7
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Mon Jan 24 06:54:27 2000 +0000

description:
Fix a bogon that caused some symlinks to not be installed.

diffstat:

 share/mk/bsd.kinc.mk  |   6 +++---
 share/mk/bsd.links.mk |  10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (66 lines):

diff -r b82a6effc36f -r 7aed68c2f3a7 share/mk/bsd.kinc.mk
--- a/share/mk/bsd.kinc.mk      Mon Jan 24 06:49:29 2000 +0000
+++ b/share/mk/bsd.kinc.mk      Mon Jan 24 06:54:27 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.kinc.mk,v 1.8 2000/01/22 19:45:41 mycroft Exp $
+#      $NetBSD: bsd.kinc.mk,v 1.9 2000/01/24 06:54:27 mycroft Exp $
 
 # System configuration variables:
 #
@@ -116,13 +116,13 @@
 .if defined(SYMLINKS) && !empty(SYMLINKS)
 incinstall::
        @set ${SYMLINKS}; \
+        echo ".include <bsd.own.mk>"; \
         while test $$# -ge 2; do \
                l=$$1; \
                shift; \
                t=${DESTDIR}$$1; \
                shift; \
-               echo ".include <bsd.own.mk>"; \
-               echo "realall: $$t"; \
+               echo "realall:: $$t"; \
                echo ".PHONY: $$t"; \
                echo "$$t:"; \
                echo "  @echo \"$$t -> $$l\""; \
diff -r b82a6effc36f -r 7aed68c2f3a7 share/mk/bsd.links.mk
--- a/share/mk/bsd.links.mk     Mon Jan 24 06:49:29 2000 +0000
+++ b/share/mk/bsd.links.mk     Mon Jan 24 06:54:27 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.links.mk,v 1.9 2000/01/22 19:45:42 mycroft Exp $
+#      $NetBSD: bsd.links.mk,v 1.10 2000/01/24 06:54:27 mycroft Exp $
 
 .PHONY:                linksinstall
 realinstall:   linksinstall
@@ -6,13 +6,13 @@
 .if defined(SYMLINKS) && !empty(SYMLINKS)
 linksinstall::
        @set ${SYMLINKS}; \
+        echo ".include <bsd.own.mk>"; \
         while test $$# -ge 2; do \
                l=$$1; \
                shift; \
                t=${DESTDIR}$$1; \
                shift; \
-               echo ".include <bsd.own.mk>"; \
-               echo "realall: $$t"; \
+               echo "realall:: $$t"; \
                echo ".PHONY: $$t"; \
                echo "$$t:"; \
                echo "  @echo \"$$t -> $$l\""; \
@@ -23,13 +23,13 @@
 .if defined(LINKS) && !empty(LINKS)
 linksinstall::
        @set ${LINKS}; \
+        echo ".include <bsd.own.mk>"; \
         while test $$# -ge 2; do \
                l=${DESTDIR}$$1; \
                shift; \
                t=${DESTDIR}$$1; \
                shift; \
-               echo ".include <bsd.own.mk>"; \
-               echo "realall: $$t"; \
+               echo "realall:: $$t"; \
                echo ".PHONY: $$t"; \
                echo "$$t:"; \
                echo "  @echo \"$$t -> $$l\""; \



Home | Main Index | Thread Index | Old Index