#! /bin/sh -e ## XX_PATCHNAME.dpatch by YOUR NAME ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Configure and build mod_ngobjweb [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch}" if [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $patch_opts -p1 < $0;; -unpatch) patch $patch_opts -p1 -R < $0;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1;; esac exit 0 @DPATCH@ diff -urN sope.orig/sope-appserver/mod_ngobjweb/GNUmakefile sope/sope-appserver/mod_ngobjweb/GNUmakefile --- sope.orig/sope-appserver/mod_ngobjweb/GNUmakefile 2004-09-26 14:15:22.000000000 +0200 +++ sope/sope-appserver/mod_ngobjweb/GNUmakefile 2004-09-26 14:17:43.000000000 +0200 @@ -5,7 +5,7 @@ # config APACHE = /usr -APXS = $(APACHE)/sbin/apxs +APXS = $(APACHE)/bin/apxs ifneq ($(apxs),no) ifneq ($(apxs),yes)