summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-10-08 20:21:23 +0000
committerRoy Marples <roy@marples.name>2009-10-08 20:21:23 +0000
commit26fbb9ed3d5dc7f4086416b28b0b534accb029b4 (patch)
treeecc164b1347ec9c329f7d78ba9df029d566fc922 /configure
parentf19df563b046a25ef610ba6960eabdb72dae49a7 (diff)
downloaddhcpcd-26fbb9ed3d5dc7f4086416b28b0b534accb029b4.tar.xz
Improve import so it's more generic.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 590eb1b2..5430bf29 100755
--- a/configure
+++ b/configure
@@ -205,7 +205,7 @@ if $XCC _arc4random.c -o _arc4random 2>/dev/null; then
echo "yes"
else
echo "no"
- echo "SRCS+= compat/arc4random.c" >>$CONFIG_MK
+ echo "COMPAT_SRCS+= compat/arc4random.c" >>$CONFIG_MK
echo "#include \"compat/arc4random.h\"" >>$CONFIG_H
fi
rm -f _arc4random.c _arc4random
@@ -222,7 +222,7 @@ if $XCC _closefrom.c -o _closefrom 2>/dev/null; then
echo "yes"
else
echo "no"
- echo "SRCS+= compat/closefrom.c" >>$CONFIG_MK
+ echo "COMPAT_SRCS+= compat/closefrom.c" >>$CONFIG_MK
echo "#include \"compat/closefrom.h\"" >>$CONFIG_H
fi
rm -f _closefrom.c _closefrom
@@ -242,7 +242,7 @@ if $XCC _getline.c -o _getline 2>/dev/null; then
echo "yes"
else
echo "no"
- echo "SRCS+= compat/getline.c" >>$CONFIG_MK
+ echo "COMPAT_SRCS+= compat/getline.c" >>$CONFIG_MK
echo "#include \"compat/getline.h\"" >>$CONFIG_H
fi
rm -f _getline.c _getline
@@ -261,7 +261,7 @@ if $XCC _strlcpy.c -o _strlcpy 2>/dev/null; then
echo "yes"
else
echo "no"
- echo "SRCS+= compat/strlcpy.c" >>$CONFIG_MK
+ echo "COMPAT_SRCS+= compat/strlcpy.c" >>$CONFIG_MK
echo "#include \"compat/strlcpy.h\"" >>$CONFIG_H
fi
rm -f _strlcpy.c _strlcpy