[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1229 - in trunk/freebsd6-buildutils/debian: . patches



Author: rmh
Date: 2006-02-17 16:29:55 +0000 (Fri, 17 Feb 2006)
New Revision: 1229

Modified:
   trunk/freebsd6-buildutils/debian/changelog
   trunk/freebsd6-buildutils/debian/patches/09_ports_path.diff
Log:
patches/09_ports_path.diff: Fix sed regexp.

Modified: trunk/freebsd6-buildutils/debian/changelog
===================================================================
--- trunk/freebsd6-buildutils/debian/changelog	2006-02-17 13:43:42 UTC (rev 1228)
+++ trunk/freebsd6-buildutils/debian/changelog	2006-02-17 16:29:55 UTC (rev 1229)
@@ -57,8 +57,9 @@
     - patches/10_linux_utils.diff: Merge into 09_ports_path.diff
   * patches/09_ports_path.diff: Set PORTSDIR to /usr/share (instead of
     /usr/ports).
+  * patches/09_ports_path.diff: Fix sed regexp.
 
- -- Robert Millan <rmh@aybabtu.com>  Fri, 17 Feb 2006 14:40:05 +0100
+ -- Robert Millan <rmh@aybabtu.com>  Fri, 17 Feb 2006 17:20:38 +0100
 
 freebsd5-buildutils (5.4-3) unstable; urgency=low
 

Modified: trunk/freebsd6-buildutils/debian/patches/09_ports_path.diff
===================================================================
--- trunk/freebsd6-buildutils/debian/patches/09_ports_path.diff	2006-02-17 13:43:42 UTC (rev 1228)
+++ trunk/freebsd6-buildutils/debian/patches/09_ports_path.diff	2006-02-17 16:29:55 UTC (rev 1229)
@@ -6,7 +6,7 @@
  # Get the architecture
  .if !defined(ARCH)
 -ARCH!=	${UNAME} -p
-+ARCH!= ${UNAME} -m | sed -e "s/^i[4-9]86$/i386/g"
++ARCH!= ${UNAME} -m | sed -e s/^i[4-9]86$$/i386/g
  .endif
  
  # Kludge for pre-3.0 systems
@@ -98,7 +98,7 @@
  .if !defined(NOPRECIOUSMAKEVARS)
  .if !defined(ARCH)
 -ARCH!=	uname -p
-+ARCH!=	uname -m | sed -e "s/^i[4-9]86$/i386/g"
++ARCH!=	uname -m | sed -e s/^i[4-9]86$$/i386/g
  .endif
  .if !defined(OSREL)
  OSREL!=	uname -r | sed -e 's/[-(].*//'



Reply to: