forked from freeipa-pr-ci2/freeipa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build tweaks - use automake's foreign mode, avoid creating empty file…
…s to satisfy gnu mode - run autoreconf -f to ensure that everything matches
- Loading branch information
Showing
6 changed files
with
5 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,3 @@ | ||
#!/bin/sh | ||
|
||
# automake demands these files exist when run in gnu mode which is the default, | ||
# automake can be run in foreign mode to avoid failing on the absence of these | ||
# files, but unfortunately there is no way to pass the --foreign flag to | ||
# automake when run from autoreconf. | ||
for f in NEWS README AUTHORS ChangeLog; do | ||
if [ ! -e $f ]; then | ||
touch $f | ||
fi | ||
done | ||
|
||
autoreconf -i | ||
autoreconf -i -f | ||
./configure ${1+"$@"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters