summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 11da35b..4856815 100755
--- a/configure
+++ b/configure
@@ -78,8 +78,8 @@ done
Makefiles="`find "${_srcdir}/" -type f -name Makefile.in`"
Makefiles="$Makefiles `find "${_srcdir}/" -type f -name *.mk.in`"
for orig in $Makefiles; do
- new=${orig/%.in/}
- new=${new/#$_srcdir\//}
+ new=${orig/%.in/} #bashism
+ new=${new/#$_srcdir\//} #bashism
mkdir -p `dirname "$new"`
sed -f var.sed "${orig}" | sed \
-e '19 a# DO NOT edit this file, it has been generated by configure, and will' \