Message ID | 20220616202902.53969-1-steved@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/4] Makefile: Added the creation of config.guess and config.sub | expand |
all 4 patches committed... On 6/16/22 4:28 PM, Steve Dickson wrote: > Signed-off-by: Steve Dickson <steved@redhat.com> > --- > .gitignore | 2 ++ > Makefile | 3 +++ > 2 files changed, 5 insertions(+) > > diff --git a/.gitignore b/.gitignore > index df58159..72bdb22 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -6,6 +6,8 @@ > aclocal.m4 > autom4te.cache/ > config.log > +config.guess > +config.sub > config.status > configure > include/builddefs > diff --git a/Makefile b/Makefile > index 5302e11..be7454d 100644 > --- a/Makefile > +++ b/Makefile > @@ -60,6 +60,7 @@ clean: # if configure hasn't run, nothing to clean > endif > > $(CONFIGURE): aclocal.m4 > + autoreconf --install > autoconf > ./configure \ > --prefix=/ \ > @@ -96,3 +97,5 @@ install-lib: default > realclean distclean: clean > rm -f $(LDIRT) $(CONFIGURE) > rm -rf autom4te.cache Logs > + rm -rf config.guess config.sub configure~ > +
diff --git a/.gitignore b/.gitignore index df58159..72bdb22 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ aclocal.m4 autom4te.cache/ config.log +config.guess +config.sub config.status configure include/builddefs diff --git a/Makefile b/Makefile index 5302e11..be7454d 100644 --- a/Makefile +++ b/Makefile @@ -60,6 +60,7 @@ clean: # if configure hasn't run, nothing to clean endif $(CONFIGURE): aclocal.m4 + autoreconf --install autoconf ./configure \ --prefix=/ \ @@ -96,3 +97,5 @@ install-lib: default realclean distclean: clean rm -f $(LDIRT) $(CONFIGURE) rm -rf autom4te.cache Logs + rm -rf config.guess config.sub configure~ +
Signed-off-by: Steve Dickson <steved@redhat.com> --- .gitignore | 2 ++ Makefile | 3 +++ 2 files changed, 5 insertions(+)