From cfe46a5d7970e988591f0593ae3ebddf9e5196f4 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Tue, 18 Sep 2018 05:21:19 +0200 Subject: [PATCH] Fix config.guess and config.sub files in .gitignore Files `config.guess` and `config.sub` are committed in the php-src repository so these don't need to be ignored for the root directory. For the extensions these can be ignored in case of building extension inside the php-src with phpize. --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c0a5939537..84078dc038 100644 --- a/.gitignore +++ b/.gitignore @@ -43,13 +43,11 @@ buildconf.stamp buildmk.stamp confdefs.h config.h -config.guess config.cache config.h.in config.log config.nice config.status -config.sub config_vars.mk configuration-parser.c configuration-parser.h @@ -145,6 +143,7 @@ ext/*/build ext/*/scan_makefile_in.awk ext/*/Makefile.global ext/*/acinclude.m4 +ext/*/config.guess ext/*/config.sub ext/date/lib/timelib_config.h ext/iconv/php_have_bsd_iconv.h -- 2.50.1