diff options
author | markd <markd@pkgsrc.org> | 2006-10-17 08:26:16 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-10-17 08:26:16 +0000 |
commit | f2d8b7b7aa6a8b201a2e93bc4f159f9066c7646d (patch) | |
tree | 16aedeb3016d15ac520c223a268359710dc33884 /editors | |
parent | bb5c84e48fe49f1d4264d395241a9eece03dfa64 (diff) | |
download | pkgsrc-f2d8b7b7aa6a8b201a2e93bc4f159f9066c7646d.tar.gz |
Fix "test =="
Diffstat (limited to 'editors')
-rw-r--r-- | editors/lyx-qt/distinfo | 3 | ||||
-rw-r--r-- | editors/lyx-qt/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/editors/lyx-qt/distinfo b/editors/lyx-qt/distinfo index 20402682237..cf6e8c4df34 100644 --- a/editors/lyx-qt/distinfo +++ b/editors/lyx-qt/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.16 2006/07/23 00:28:12 reed Exp $ +$NetBSD: distinfo,v 1.17 2006/10/17 08:26:16 markd Exp $ SHA1 (lyx-1.4.2.tar.bz2) = df79126dd2cad60c15640c0218654ec22b404c77 RMD160 (lyx-1.4.2.tar.bz2) = af1dac6f6601ba3aae16543db4310afb990101b9 Size (lyx-1.4.2.tar.bz2) = 6874598 bytes SHA1 (patch-aa) = 90a09a1adbb899cbaf063d4d7f46dc77f78a62da +SHA1 (patch-ab) = 97944f49ca371048193212753818b4004861aa41 SHA1 (patch-af) = a2dda183512e8fdfa79ecf4b2c40b32198f9a1fb diff --git a/editors/lyx-qt/patches/patch-ab b/editors/lyx-qt/patches/patch-ab new file mode 100644 index 00000000000..87aa8c55550 --- /dev/null +++ b/editors/lyx-qt/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.9 2006/10/17 08:26:16 markd Exp $ + +--- development/Win32/packaging/build_lyxwin.sh.orig 2006-10-17 21:18:46.000000000 +1300 ++++ development/Win32/packaging/build_lyxwin.sh +@@ -72,7 +72,7 @@ modify_version_C() + echo "Unable to find ${VERSION_C}" + return + } +- test "${LYX_VERSION_STR}" == "" && return ++ test "${LYX_VERSION_STR}" = "" && return + + sed '/char const \* lyx_version = /s/"[^"]*"/"'${LYX_VERSION_STR}'"/' \ + ${VERSION_C} > tmp.$$ |