summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Witten <mfwitten@gmail.com>2022-01-18 22:29:38 +0200
committerAlexander Naumov <alexander_naumov@opensuse.org>2022-01-18 22:29:38 +0200
commita13ee11b25ceeaa5771ba1e6edfba6d83fb57027 (patch)
tree2bd1652e3775b3698ccd96878ad46624d855d66f
parent2dc7d0ce2bc352920963c887480f3fbdaa0e7b8a (diff)
downloadscreen-a13ee11b25ceeaa5771ba1e6edfba6d83fb57027.tar.gz
[PATCH] build: autogen.sh: Use '-i' and remove 'exec'
* Add the '-i' ('--install') flag; this resolves ticket #60751. * Remove the spurious 'exec', which causes the shell script to be replaced entirely with the 'autoreconf' process, and thus prevents the rest of the script from being run; after this commit, the director 'autom4te.cache' does actually get removed. Reported-by: Tushar T <sukucorp>
-rwxr-xr-xsrc/autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autogen.sh b/src/autogen.sh
index 520249c..68f4a17 100755
--- a/src/autogen.sh
+++ b/src/autogen.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-exec autoreconf
+autoreconf -i