diff options
Diffstat (limited to 'x11vnc/misc/enhanced_tightvnc_viewer/build.unix')
-rwxr-xr-x | x11vnc/misc/enhanced_tightvnc_viewer/build.unix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11vnc/misc/enhanced_tightvnc_viewer/build.unix b/x11vnc/misc/enhanced_tightvnc_viewer/build.unix index 0fcfb9d..1678478 100755 --- a/x11vnc/misc/enhanced_tightvnc_viewer/build.unix +++ b/x11vnc/misc/enhanced_tightvnc_viewer/build.unix @@ -157,7 +157,11 @@ start=`pwd` cd $tmp; failed=0 count=0 -for patch in ../../patches/tight* +patches="../../patches/tight-vncviewer-full.patch" +if [ ! -f "$patches" ]; then + patches=`ls ../../patches/tight* | grep -v 'tight-vncviewer-full.patch'` +fi +for patch in $patches do if [ ! -f "$patch" ]; then continue |