From 30e2a81b33d1a95e28047616e9f8214cf601e80f Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 7 Aug 2015 14:00:44 +0200 Subject: [PATCH] fix build step --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4be60ee..33c6a74 100644 --- a/Makefile +++ b/Makefile @@ -56,9 +56,9 @@ $(srcdir)/php-versions.json: $(srcdir)/php-version.php $(srcdir)/php-$(PHP_VERSION)/configure: | $(srcdir)/php-versions.json if test $(PHP_VERSION) = "master"; then \ - cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf \ + cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf; \ else \ - curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir) \ + curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir); \ fi $(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(srcdir)/php-versions.json -- 2.30.2