summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-09 23:23:16 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-09 23:23:16 -0800
commitc97acc792a69cbcabfa05150b639ef6b11f877f9 (patch)
tree771663ce7c4f076a99a8a7a821a7edb3c6de96f5
parent31231effb488243954814b2e34c2b7c846fb3cac (diff)
downloadtxr-c97acc792a69cbcabfa05150b639ef6b11f877f9.tar.gz
txr-c97acc792a69cbcabfa05150b639ef6b11f877f9.tar.bz2
txr-c97acc792a69cbcabfa05150b639ef6b11f877f9.zip
* configure: Fix patching without quilt.
-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
}