mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
Add GNU as a valid platform
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
parent
596a2076dc
commit
524f01a7b5
1 changed files with 3 additions and 3 deletions
6
configure
vendored
6
configure
vendored
|
@ -365,9 +365,9 @@ elif [ $uname = "SunOS" ] ; then
|
|||
printf "Solaris.\n"
|
||||
platform=SOLARIS
|
||||
linker_resolves_library_dependencies=0
|
||||
elif [ $uname = "Linux" ] ; then
|
||||
printf "Linux\n"
|
||||
platform=LINUX
|
||||
elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then
|
||||
printf "$uname\n"
|
||||
platform="$uname"
|
||||
linker_resolves_library_dependencies=1
|
||||
|
||||
printf "Checking for $libdir_expanded in ldconfig... "
|
||||
|
|
Loading…
Reference in a new issue