diff options
author | rillig <rillig> | 2006-10-15 21:34:09 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-15 21:34:09 +0000 |
commit | 0adea6f631f10458a4da4caa6b0eac958166b6b4 (patch) | |
tree | be089e639b049dd3c42bd86693976f5d625aea2e /editors/lpe | |
parent | f49c3b3d1650e5b4ce7a3b8492dd7bf0155dc229 (diff) | |
download | pkgsrc-0adea6f631f10458a4da4caa6b0eac958166b6b4.tar.gz |
Fixed "test ==".
Diffstat (limited to 'editors/lpe')
-rw-r--r-- | editors/lpe/distinfo | 3 | ||||
-rw-r--r-- | editors/lpe/patches/patch-al | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/editors/lpe/distinfo b/editors/lpe/distinfo index d7c1c43055b..6be9045d984 100644 --- a/editors/lpe/distinfo +++ b/editors/lpe/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 17:15:11 agc Exp $ +$NetBSD: distinfo,v 1.3 2006/10/15 21:34:09 rillig Exp $ SHA1 (lpe-1.2.6.tar.gz) = b69ef7d8ff3cee5bfb0d9709ed91182afccaf587 RMD160 (lpe-1.2.6.tar.gz) = f177f115db6303ef91778adda9dcdd005c03cf17 @@ -14,3 +14,4 @@ SHA1 (patch-ah) = ac42f20b01fb56f8ecf3a3505f632962af03471c SHA1 (patch-ai) = 283608e9f1cde456395d4696cf5cb52afe536b19 SHA1 (patch-aj) = cf72e180187e3eef42323bda6421cfe74d8cf543 SHA1 (patch-ak) = 06db8f684a0b88e8f7daeb2293c2e20c95001c81 +SHA1 (patch-al) = 3ecafa7fd047edf3e9373c6ea27f181a826d33a4 diff --git a/editors/lpe/patches/patch-al b/editors/lpe/patches/patch-al new file mode 100644 index 00000000000..c1bbb861254 --- /dev/null +++ b/editors/lpe/patches/patch-al @@ -0,0 +1,13 @@ +$NetBSD: patch-al,v 1.1 2006/10/15 21:34:09 rillig Exp $ + +--- autogen.sh.orig 2000-07-18 19:36:05.000000000 +0200 ++++ autogen.sh 2006-10-15 23:33:06.000000000 +0200 +@@ -104,7 +104,7 @@ do + # fi + fi + if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null && +- test "x$LIBTOOL" == "x"; then ++ test "x$LIBTOOL" = "x"; then + echo "Running libtoolize..." + libtoolize --force --copy + fi |