gvansickle / ucg

UniversalCodeGrep (ucg) is an extremely fast grep-like tool specialized for searching large bodies of source code.

Home Page:https://gvansickle.github.io/ucg/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HEAD does not containg configure script

csrabak opened this issue · comments

doing a default cloning of repo brings insuficient code for compiling as the configure script is not available.

Hi @csrabak : That's intentional and correct. ./configure is a generated artifact, and hence does not belong under source control. It gets generated when you do an autoreconf, as is the normal practice with the auto{make,conf} build system.
A "make dist" will generate this file and include it in the generated distributable; this is where you probably have seen an already-existing ./configure file.
Appreciate the report. Closing with this comment.