diff options
author | rillig <rillig> | 2007-11-01 08:37:24 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-11-01 08:37:24 +0000 |
commit | 0c3f1a8a1cb9f44d6c2fd465926a7b6ba9bc4616 (patch) | |
tree | 957e9d149f7845b7d31732660ef3d8e506f64245 /mk/configure | |
parent | 19db0b96d1cd5c5f75e57f444d682ab68ca92476 (diff) | |
download | pkgsrc-0c3f1a8a1cb9f44d6c2fd465926a7b6ba9bc4616.tar.gz |
Moved the pre-configure-checks-hook below do-configure-pre-hook, so that
REPLACE_INTERPRETER takes place before the portability check. Shell
scripts that will use bash anyway do not need to be checked for
portability problems.
Diffstat (limited to 'mk/configure')
-rw-r--r-- | mk/configure/configure.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/configure/configure.mk b/mk/configure/configure.mk index 3853dfb3616..340ab4a8cf6 100644 --- a/mk/configure/configure.mk +++ b/mk/configure/configure.mk @@ -1,4 +1,4 @@ -# $NetBSD: configure.mk,v 1.18 2007/07/12 18:59:15 jlam Exp $ +# $NetBSD: configure.mk,v 1.19 2007/11/01 08:37:24 rillig Exp $ # # = Package-settable variables = # @@ -125,8 +125,8 @@ _REAL_CONFIGURE_TARGETS+= configure-check-interactive _REAL_CONFIGURE_TARGETS+= configure-message _REAL_CONFIGURE_TARGETS+= configure-vars _REAL_CONFIGURE_TARGETS+= pre-configure -_REAL_CONFIGURE_TARGETS+= pre-configure-checks-hook _REAL_CONFIGURE_TARGETS+= do-configure-pre-hook +_REAL_CONFIGURE_TARGETS+= pre-configure-checks-hook _REAL_CONFIGURE_TARGETS+= do-configure _REAL_CONFIGURE_TARGETS+= do-configure-post-hook _REAL_CONFIGURE_TARGETS+= post-configure |