| Summary: | Portability problem in configure script | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Thomas Klausner <wiz> |
| Component: | Portability-Cmake | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | NetBSD pkgsrc | ||
| OS: | NetBSD | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.9.3 | |
| Sentry Crash Report: | |||
| Attachments: | Patch fixing the problem. | ||
|
Description
Thomas Klausner
2007-07-08 11:00:28 UTC
Created attachment 21086 [details]
Patch fixing the problem.
SVN commit 686229 by cgilles:
fix automake syntax to be portable under NETBSD
BUG: 147671
M +1 -1 configure.in.in
--- branches/extragear/kde3/graphics/digikam/configure.in.in #686228:686229
@@ -330,7 +330,7 @@
[enable_nfs_hack=no]
)
-if test "x$enable_nfs_hack" == "xyes"; then
+if test "x$enable_nfs_hack" = "xyes"; then
AC_DEFINE(NFS_HACK, 1, [NFS hack enabled])
AC_MSG_NOTICE([NFS hack enabled. Make sure you know what you are doing])
fi
|