diff options
Diffstat (limited to 'xorg/X11R7.6/buildx.sh')
-rwxr-xr-x | xorg/X11R7.6/buildx.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/xorg/X11R7.6/buildx.sh b/xorg/X11R7.6/buildx.sh index df8c1131..e18f9f5b 100755 --- a/xorg/X11R7.6/buildx.sh +++ b/xorg/X11R7.6/buildx.sh @@ -37,7 +37,11 @@ download_file() cd downloads - wget -cq $download_url/$file + if [ "$file" = "pixman-0.38.0.tar.gz" ]; then + wget -cq "https://ftp.osuosl.org/pub/blfs/conglomeration/pixman/pixman-0.38.0.tar.gz" + else + wget -cq $download_url/$file + fi status=$? cd .. return $status @@ -310,7 +314,7 @@ fi # this will copy the build X server with the other X server binaries cd rdp -strip X11rdp +#strip X11rdp cp X11rdp $X11RDPBASE/bin if [ "$2" = "drop" ]; then |