diff options
author | kim <kim> | 2005-12-24 20:34:55 +0000 |
---|---|---|
committer | kim <kim> | 2005-12-24 20:34:55 +0000 |
commit | 370bfdccd77ea44b3cfa51ed002f20406e77089c (patch) | |
tree | 01b51bb773bdb42e901ace40c3e67c31524bcefe /textproc/libxslt | |
parent | b816852e5e7c3b8e6cdc7f7701f64e430ad62504 (diff) | |
download | pkgsrc-370bfdccd77ea44b3cfa51ed002f20406e77089c.tar.gz |
There is no "==" operator in test(1).
Diffstat (limited to 'textproc/libxslt')
-rw-r--r-- | textproc/libxslt/patches/patch-ac | 13 | ||||
-rw-r--r-- | textproc/libxslt/patches/patch-ad | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/textproc/libxslt/patches/patch-ac b/textproc/libxslt/patches/patch-ac new file mode 100644 index 00000000000..5578b27c231 --- /dev/null +++ b/textproc/libxslt/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.4 2005/12/24 20:34:55 kim Exp $ + +--- configure.in.orig 2005-09-05 01:19:44.000000000 +0300 ++++ configure.in 2005-12-24 22:32:02.000000000 +0200 +@@ -469,7 +469,7 @@ + fi + + AC_SUBST(WITH_MODULES) +-AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1") ++AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" = "1") + + dnl + dnl setup default module path diff --git a/textproc/libxslt/patches/patch-ad b/textproc/libxslt/patches/patch-ad new file mode 100644 index 00000000000..d27cf2504e3 --- /dev/null +++ b/textproc/libxslt/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2005/12/24 20:34:55 kim Exp $ + +--- configure.orig 2005-09-05 01:28:05.000000000 +0300 ++++ configure 2005-12-24 22:33:33.000000000 +0200 +@@ -22590,7 +22590,7 @@ + + + +-if test "$WITH_MODULES" == "1"; then ++if test "$WITH_MODULES" = "1"; then + WITH_MODULES_TRUE= + WITH_MODULES_FALSE='#' + else |