[Bug 147671] New: Portability problem in configure script

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

[Bug 147671] New: Portability problem in configure script

Bugzilla from wiz@danbala.tuwien.ac.at
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=147671         
           Summary: Portability problem in configure script
           Product: digikam
           Version: unspecified
          Platform: NetBSD pkgsrc
        OS/Version: NetBSD
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel kde org
        ReportedBy: wiz danbala tuwien ac at


Version:           0.9.2 (using KDE KDE 3.5.7)
Installed from:    NetBSD pkgsrc
OS:                NetBSD

digikam-0.9.2's configure script uses the unportable bash "=="
comparison operator for test(1). It is not supported by most other
shells or even test(1) from GNU coreutils. Please use "="
instead. I'll attach a patch.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 147671] Portability problem in configure script

Bugzilla from wiz@danbala.tuwien.ac.at
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=147671         




------- Additional Comments From wiz danbala tuwien ac at  2007-07-08 11:00 -------
Created an attachment (id=21086)
 --> (http://bugs.kde.org/attachment.cgi?id=21086&action=view)
Patch fixing the problem.
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel
Reply | Threaded
Open this post in threaded view
|

[Bug 147671] Portability problem in configure script

Gilles Caulier-4
In reply to this post by Bugzilla from wiz@danbala.tuwien.ac.at
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=147671         
caulier.gilles gmail com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From caulier.gilles gmail com  2007-07-10 22:49 -------
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
_______________________________________________
Digikam-devel mailing list
[hidden email]
https://mail.kde.org/mailman/listinfo/digikam-devel