From: dtrg Date: Tue, 25 Jul 2006 23:22:58 +0000 (+0000) Subject: Updated to the latest version of pm which installs files with symlinks. X-Git-Tag: release-6-0-pre-1~75 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f756747414bc14bf0f42f462882bb629e4a21ec9;p=ack.git Updated to the latest version of pm which installs files with symlinks. --- diff --git a/util/LLgen/c.pm b/util/LLgen/c.pm index eeb313882..c38e85bef 100644 --- a/util/LLgen/c.pm +++ b/util/LLgen/c.pm @@ -15,9 +15,9 @@ CCOMPILER = "gcc" CC = "%CCOMPILER% %CBUILDFLAGS% %CDYNINCLUDES% %CINCLUDES% %CDEFINES% %CEXTRAFLAGS% -c -o %out% %in%" CPROGRAM = "%CCOMPILER% %CBUILDFLAGS% %CLINKFLAGS% %CEXTRAFLAGS% -o %out% %in% %CLIBRARIES%" CDEPENDS = "%CCOMPILER% %CBUILDFLAGS% %CDYNINCLUDES% %CINCLUDES% %CDEFINES% %CEXTRAFLAGS% -MM -MG %in% > %out%" -AR = "%RM% %out% && ar cr %out% %in%" +AR = "%RM% %out% && ar cr %out% %in% && ranlib %out%" -CBUILDFLAGS = "-g -Os" +CBUILDFLAGS = "-g -O" CINCLUDES = {} CDEFINES = {} CEXTRAFLAGS = "" diff --git a/util/LLgen/pm b/util/LLgen/pm index 8272a0cd5..47c4736d5 100755 Binary files a/util/LLgen/pm and b/util/LLgen/pm differ diff --git a/util/LLgen/pmfile b/util/LLgen/pmfile index 02791f49a..bd163f49f 100644 --- a/util/LLgen/pmfile +++ b/util/LLgen/pmfile @@ -107,13 +107,16 @@ install = group { install = { "mkdir -p %PREFIX%", - "(cd bin && tar cf - .) | (cd %PREFIX% && tar xvf -)" + "(cd bin && tar chvf - .) | (cd %PREFIX% && tar xUf -)" } } -- Revision history -- $Log$ --- Revision 1.3 2006-07-23 20:33:26 dtrg +-- Revision 1.4 2006-07-25 23:22:58 dtrg +-- Updated to the latest version of pm which installs files with symlinks. +-- +-- Revision 1.3 2006/07/23 20:33:26 dtrg -- Added a workaround for an OSX compiler bug. -- -- Revision 1.2 2006/07/21 11:15:14 dtrg