Fixed patch section of prep().
authorDavid Levine <levinedl@acm.org>
Tue, 8 May 2012 15:16:46 +0000 (10:16 -0500)
committerDavid Levine <levinedl@acm.org>
Tue, 8 May 2012 15:16:46 +0000 (10:16 -0500)
SPECS/build-nmh-cygwin

index 359925f..e7ce976 100755 (executable)
@@ -234,12 +234,14 @@ mkdirs_log() {
 }
 
 # Unpack the original tarball, and get everything set up for this script.
+# Change from generic-build-script:  cd to ${srcdir} instead of ${topdir}.
+# Change from generic-build-script:  use -p1 instead of -p0 patch option.
 prep() {
   (cd ${topdir} && \
   unpack ${src_orig_pkg} && \
-  cd ${topdir} && \
+  cd ${srcdir} && \
   if [ -f ${src_patch} ] ; then \
-    patch -Z -p0 < ${src_patch} ;\
+    patch -Z -p1 < ${src_patch} ;\
   fi && \
   mkdirs )
 }