aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2018-02-18 18:47:42 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2018-02-18 18:47:42 +0100
commit9fa6119f142669e389cc5c1685942e999dbf3353 (patch)
tree093db680deef028f73f8c2243ec490db9c119510 /autogen.sh
parentbe38c3d90e143b2998e41c3b9880405d1733b3b9 (diff)
autogen.sh: break overlong sed line
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index b6c256bda..9e46d4b64 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -33,6 +33,12 @@ if test -z $AUTORECONF; then
exit
fi
-cat configure.seed | sed "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" | sed "s/@NDPI_MINOR@/$NDPI_MINOR/g" | sed "s/@NDPI_PATCH@/$NDPI_PATCH/g" | sed "s/@NDPI_VERSION_SHORT@/$NDPI_VERSION_SHORT/g" > configure.ac
+cat configure.seed | sed \
+ -e "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" \
+ -e "s/@NDPI_MINOR@/$NDPI_MINOR/g" \
+ -e "s/@NDPI_PATCH@/$NDPI_PATCH/g" \
+ -e "s/@NDPI_VERSION_SHORT@/$NDPI_VERSION_SHORT/g" \
+ > configure.ac
+
autoreconf -ivf
./configure $*