summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2014-01-03 17:16:12 +0000
committerRoy Marples <roy@marples.name>2014-01-03 17:16:12 +0000
commitb3c55f23df5dc674e14f9df1c3b1ec26b1185c77 (patch)
tree6db007a6fa2516f178c90f59744725d22a663e09 /configure
parent172f26b97e22cdbf10c2b6db05d138ab1421d5d3 (diff)
downloaddhcpcd-b3c55f23df5dc674e14f9df1c3b1ec26b1185c77.tar.xz
Change configure to detect fossil for debugging.
Make dist now exports the current fossil checkin. Remove old .git files.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index bef44ad2..bff6d1e1 100755
--- a/configure
+++ b/configure
@@ -296,8 +296,8 @@ if [ -n "$DEBUG" -a "$DEBUG" != no -a "$DEBUG" != false ]; then
echo "Enabling memory debugging"
echo "CPPFLAGS+= -DDEBUG_MEMORY" >>$CONFIG_MK
echo "CFLAGS+= -g" >>$CONFIG_MK
-elif [ -z "$DEBUG" -a -d .git ]; then
- printf "Found git ... "
+elif [ -z "$DEBUG" -a -f .fslckout ]; then
+ printf "Found fossil checkout ... "
DEBUG=yes
echo "CFLAGS+= -g" >>$CONFIG_MK
else