diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-02-22 23:19:07 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-02-22 23:19:07 +0000 |
commit | 47286f3e1de6fa4ee1ffcbed3d6babd1704aca20 (patch) | |
tree | 27c18c53e0bdf52af66712cb7d79c3009a3b6ea6 /devel/linux-understand_c | |
parent | a84f8427e0b38d00ae4eabae6f0c6ac1f47fd28a (diff) |
o Update to 1.4 Build 149
o Fix bug in wrapper script: do not incorrectly use shift from
sh(1). First command line argument was being lost when there was
more than 1 argument.
Notes
Notes:
svn path=/head/; revision=55111
Diffstat (limited to 'devel/linux-understand_c')
-rw-r--r-- | devel/linux-understand_c/Makefile | 2 | ||||
-rw-r--r-- | devel/linux-understand_c/distinfo | 2 | ||||
-rw-r--r-- | devel/linux-understand_c/files/wrapper.sh | 5 |
3 files changed, 2 insertions, 7 deletions
diff --git a/devel/linux-understand_c/Makefile b/devel/linux-understand_c/Makefile index af9d098a89cf..5fe3e0005e06 100644 --- a/devel/linux-understand_c/Makefile +++ b/devel/linux-understand_c/Makefile @@ -6,7 +6,7 @@ # PORTNAME= understand_c -PORTVERSION= 1.4.146 +PORTVERSION= 1.4.149 PORTEPOCH= 1 CATEGORIES= devel linux MASTER_SITES= http://www.scitools.com/ftp/pub/download/understand_c/%SUBDIR%/ diff --git a/devel/linux-understand_c/distinfo b/devel/linux-understand_c/distinfo index 88f521b801d3..a4fb07bc5ba6 100644 --- a/devel/linux-understand_c/distinfo +++ b/devel/linux-understand_c/distinfo @@ -1 +1 @@ -MD5 (und_c-14b146-linux.tar.gz) = 3d11cc7b7d02dfa1af68e2909573c336 +MD5 (und_c-14b149-linux.tar.gz) = 00b08eacdbd2c1e56593d2058959140e diff --git a/devel/linux-understand_c/files/wrapper.sh b/devel/linux-understand_c/files/wrapper.sh index 0e5b5ce2ca01..bd1cba029f75 100644 --- a/devel/linux-understand_c/files/wrapper.sh +++ b/devel/linux-understand_c/files/wrapper.sh @@ -3,9 +3,4 @@ PREFIX="%%PREFIX%%" PROGRAM="${0}" -if [ ${#} -gt 1 ] -then - shift -fi - exec ${PREFIX}/${PROGRAM##*/} ${*} & |