From d5ec047619aec0188efa66c01dab993f8ae3ae46 Mon Sep 17 00:00:00 2001 From: Chingis Date: Fri, 1 Dec 2017 12:23:41 +0700 Subject: [PATCH 1/2] Fix paths --- ext/phar/Makefile.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/phar/Makefile.frag b/ext/phar/Makefile.frag index e58795deea81c..3a4b8d1b6484e 100644 --- a/ext/phar/Makefile.frag +++ b/ext/phar/Makefile.frag @@ -1,5 +1,5 @@ $(srcdir)/phar_path_check.c: $(srcdir)/phar_path_check.re - @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re) + @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o phar_path_check.c phar_path_check.re) pharcmd: $(builddir)/phar.php $(builddir)/phar.phar From 02c634f326dec0de2be6cb1b423f479ff3cf2f68 Mon Sep 17 00:00:00 2001 From: Chingis Date: Mon, 11 Dec 2017 15:05:05 +0700 Subject: [PATCH 2/2] Use full paths for phar sources --- ext/phar/Makefile.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/phar/Makefile.frag b/ext/phar/Makefile.frag index 3a4b8d1b6484e..8047eb5af4109 100644 --- a/ext/phar/Makefile.frag +++ b/ext/phar/Makefile.frag @@ -1,5 +1,5 @@ $(srcdir)/phar_path_check.c: $(srcdir)/phar_path_check.re - @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o phar_path_check.c phar_path_check.re) + @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o $(srcdir)/phar_path_check.c $(srcdir)/phar_path_check.re) pharcmd: $(builddir)/phar.php $(builddir)/phar.phar