summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c20cb69..695ff973 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2011-12-09 Kaz Kylheku <kaz@kylheku.com>
+ * configure: Fix patching without quilt.
+
+2011-12-09 Kaz Kylheku <kaz@kylheku.com>
+
Build and pass test suite on Cygwin.
* configure (longlong, ulonglong, superlong, usuperlong): Initialize
diff --git a/configure b/configure
index b6c91967..45804f50 100755
--- a/configure
+++ b/configure
@@ -1062,7 +1062,7 @@ apply_patches()
while read patch patchlevel ; do
case patch in
'#' ) continue ;;
- * ) patch ${patchlevel:--p0} < $patch ;;
+ * ) patch ${patchlevel:--p1} < patches/$patch ;;
esac
done < patches/series
}