diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-09 07:00:08 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-09 07:00:08 +0000 |
commit | 6007d881a67e78f4bbb99c6698d926d0154b5eec (patch) | |
tree | 9bcbf80187d900a785cd63e9e23e4470864d9490 /lang/sml-nj-devel/files/patch-ab | |
parent | dd662d43e8a0bc72def1aeddbcca06093db2b647 (diff) |
Notes
Diffstat (limited to 'lang/sml-nj-devel/files/patch-ab')
-rw-r--r-- | lang/sml-nj-devel/files/patch-ab | 52 |
1 files changed, 5 insertions, 47 deletions
diff --git a/lang/sml-nj-devel/files/patch-ab b/lang/sml-nj-devel/files/patch-ab index 0ea33ef5bdf3..cac586c50abb 100644 --- a/lang/sml-nj-devel/files/patch-ab +++ b/lang/sml-nj-devel/files/patch-ab @@ -1,48 +1,6 @@ ---- config/install.sh.orig Fri Feb 15 23:17:39 2002 -+++ config/install.sh Wed Feb 20 03:36:14 2002 -@@ -92,6 +92,17 @@ - return 0 - } - -+isin() { -+ tested_x=$1 -+ shift -+ for set_y in "$@" ; do -+ if [ ${tested_x} = ${set_y} ] ; then -+ return 0 -+ fi -+ done -+ return 1 -+} -+ - require() { - require_who=$1 - shift -@@ -105,8 +116,10 @@ - } - - onepass() { -- while read depline ; do -- require $depline -+ while read depwho depon ; do -+ if isin $depwho ${TARGETS} ; then -+ require $depwho $depon -+ fi - done - } - -@@ -123,9 +136,7 @@ - # - NEWTARGETS="" - for t in ${ALLTARGETS} ; do -- if isnotin $t ${TARGETS} ; then -- : -- else -+ if isin $t ${TARGETS} ; then - NEWTARGETS="$NEWTARGETS $t" - fi - done -@@ -552,6 +563,28 @@ +--- config/install.sh.orig Fri May 17 22:48:36 2002 ++++ config/install.sh Thu May 23 01:40:27 2002 +@@ -550,6 +550,28 @@ ###################################################################### # @@ -71,7 +29,7 @@ # create the various sub directories # for dir in $BINDIR $HEAPDIR $RUNDIR $LIBDIR $SRCDIR ; do -@@ -668,7 +701,7 @@ +@@ -666,7 +688,7 @@ $MAKE -f mk.$ARCH-$OPSYS $EXTRA_DEFS if [ -x run.$ARCH-$OPSYS ]; then mv run.$ARCH-$OPSYS $RUNDIR @@ -80,7 +38,7 @@ else complain "$this: !!! Run-time system build failed for some reason." fi -@@ -732,6 +765,8 @@ +@@ -730,6 +752,8 @@ do unpack $src $ROOT/src $src $src done |