aboutsummaryrefslogtreecommitdiff
path: root/src/build-tools
diff options
context:
space:
mode:
authorRobbie Harwood <rharwood@redhat.com>2016-09-02 14:53:59 -0400
committerGreg Hudson <ghudson@mit.edu>2016-09-06 13:15:36 -0400
commit69571141ccc2483b54e015a5d7c77d1e926f2822 (patch)
tree7d5ff1b9b5713d7e7e25a5cdcc202404a02492a7 /src/build-tools
parent56d02135d4c77b6aa0cb7136477d426248c60a6f (diff)
downloadkrb5-69571141ccc2483b54e015a5d7c77d1e926f2822.zip
krb5-69571141ccc2483b54e015a5d7c77d1e926f2822.tar.gz
krb5-69571141ccc2483b54e015a5d7c77d1e926f2822.tar.bz2
Fix directory changes to use explicit subshells
We depend on the behavior of having a separate subshell for each line in our Makefiles, so force it where make (observed FreeBSD 10.3) does not create one. [ghudson@mit.edu: also changed rules in config/post.in] ticket: 8492 (new) target_version: 1.14-next target_version: 1.13-next tags: pullup
Diffstat (limited to 'src/build-tools')
-rw-r--r--src/build-tools/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-tools/Makefile.in b/src/build-tools/Makefile.in
index 729d115..5dcae11 100644
--- a/src/build-tools/Makefile.in
+++ b/src/build-tools/Makefile.in
@@ -14,7 +14,7 @@ PKGCONFIG_FILES = \
all-unix: krb5-config $(PKGCONFIG_FILES)
krb5-config $(PKGCONFIG_FILES): $(BUILDTOP)/config.status
- cd $(BUILDTOP) && $(SHELL) config.status $(mydir)/$@
+ (cd $(BUILDTOP) && $(SHELL) config.status $(mydir)/$@)
krb5-config: $(srcdir)/krb5-config.in
kadm-client.pc: $(srcdir)/kadm-client.pc.in
kadm-server.pc: $(srcdir)/kadm-server.pc.in