Add patch for ELF support.

This commit is contained in:
Joseph Koshy 1999-02-02 04:00:12 +00:00
parent 7fbdc4d299
commit f5b19c099d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=16480
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,15 @@
--- config/install.sh-- Wed Aug 5 13:43:43 1998
+++ config/install.sh Mon Feb 1 15:57:31 1999
@@ -193,6 +193,12 @@
exit 1
fi
fi
+# we need to patch just before build
+patch_file="${FILESDIR}/patch-global-names"
+if [ -f $patch_file ]; then
+ echo "applying source patches"
+ $PATCH $PATCH_ARGS < $patch_file
+fi
cd $SRCDIR
#

View file

@ -0,0 +1,15 @@
--- config/install.sh-- Wed Aug 5 13:43:43 1998
+++ config/install.sh Mon Feb 1 15:57:31 1999
@@ -193,6 +193,12 @@
exit 1
fi
fi
+# we need to patch just before build
+patch_file="${FILESDIR}/patch-global-names"
+if [ -f $patch_file ]; then
+ echo "applying source patches"
+ $PATCH $PATCH_ARGS < $patch_file
+fi
cd $SRCDIR
#