Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0199232

Browse files
committed
autogen.sh: don't tell to install autoconf if autoreconf exists and fails
autoreconf could exist but fail to run, and in this case the user wouldbe getting "Please install autoconf".Fix this.
1 parent473bcd4 commit0199232

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎autogen.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env sh
2-
which autoreconf> /dev/null&& autoreconf||echo"Please install autoconf"
3-
./configure$@
2+
which autoreconf> /dev/null||(echo"Please install autoconf"&&exit 1)
3+
autoreconf&&./configure$@

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp