summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSimon Sobisch <simonsobisch@web.de>2017-05-02 18:07:27 +0200
committerWill Estes <westes575@gmail.com>2017-05-02 14:43:49 -0400
commit4efcf28ee64f2b19860981640f9586be8b9fd0ef (patch)
treee7df178fe5b6547f28317d172f8194315d9f6927 /autogen.sh
parent634ef8a945601d58684fae98fa867b3621f5900b (diff)
build: only touch ChangeLog if it does not exist
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index e81633c..6802e9f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -44,6 +44,8 @@ fi
#worried. (Don't worry, we *do* have a ChangeLog, we just need the
#Makefile first.)
-touch ChangeLog
+if ! test -f ChangeLog; then
+ touch ChangeLog
+fi
"$LIBTOOLIZE" --install --force
autoreconf --install --force