summaryrefslogtreecommitdiff
path: root/package/openafs/patches/patch-src_comerr_Makefile_in
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-09-25 08:52:56 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-09-25 08:52:56 +0200
commite5ebfad1a3cbf03dcc029d19d3ffe1ef093d2ee4 (patch)
tree1ee58b6314857ff19d52be80ed98bfec9042a525 /package/openafs/patches/patch-src_comerr_Makefile_in
parent3064f02816dfac549b6d8f6f8c47a48d5a78fa55 (diff)
first step to port openafs
Diffstat (limited to 'package/openafs/patches/patch-src_comerr_Makefile_in')
-rw-r--r--package/openafs/patches/patch-src_comerr_Makefile_in38
1 files changed, 38 insertions, 0 deletions
diff --git a/package/openafs/patches/patch-src_comerr_Makefile_in b/package/openafs/patches/patch-src_comerr_Makefile_in
new file mode 100644
index 000000000..a56308099
--- /dev/null
+++ b/package/openafs/patches/patch-src_comerr_Makefile_in
@@ -0,0 +1,38 @@
+--- openafs-1.6.5.orig/src/comerr/Makefile.in 2013-07-18 00:10:42.000000000 +0200
++++ openafs-1.6.5/src/comerr/Makefile.in 2013-09-09 06:25:16.479495215 +0200
+@@ -31,12 +31,12 @@ et_lex.lex.c: et_lex.lex.l
+ $(RM) -f et_lex.lex.c
+ $(LEX) -t $(srcdir)/et_lex.lex.l > et_lex.lex.c
+
+-compile_et: compile_et.o error_table.o
++compile_et: compile_et.o error_table.o internal.o
+ case $(SYS_NAME) in \
+ *_linux* | *_umlinux* ) \
+- ${CC} ${CFLAGS} -o compile_et compile_et.o error_table.o -L${TOP_LIBDIR} -lafsutil;; \
++ ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} -o compile_et compile_et.o error_table.o internal.o ;; \
+ * ) \
+- ${CC} ${CFLAGS} -o compile_et compile_et.o error_table.o -L${TOP_LIBDIR} -lafsutil -ll;; \
++ ${CC} ${CFLAGS} -o compile_et compile_et.o error_table.o -L${TOP_LIBDIR} -ll;; \
+ esac
+
+ libafscom_err.a: error_msg.o et_name.o com_err.o AFS_component_version_number.o
+@@ -49,7 +49,10 @@ libafscom_err.a: error_msg.o et_name.o c
+ # so we need to add the source directory to the includes to pick up local headers.
+ #
+ error_table.o: error_table.c
+- $(CC) $(CFLAGS) -I${srcdir} @CFLAGS_NOUNUSED@ @CFLAGS_NOOLDSTYLE@ -c error_table.c
++ $(CC_FOR_BUILD) ${COMMON_INCL} $(CFLAGS_FOR_BUILD) -I${srcdir} @CFLAGS_NOUNUSED@ @CFLAGS_NOOLDSTYLE@ -c error_table.c
++
++internal.o: internal.c
++ $(CC_FOR_BUILD) ${COMMON_INCL} $(CFLAGS_FOR_BUILD) -I${srcdir} -c internal.c
+
+ #
+ # Installation targets
+@@ -85,6 +88,7 @@ test:
+ cd test; $(MAKE)
+
+ compile_et.o: AFS_component_version_number.c
++ $(CC_FOR_BUILD) ${COMMON_INCL} $(CFLAGS_FOR_BUILD) -c compile_et.c -o compile_et.o
+ error_table.o: et_lex.lex.c
+
+ include ../config/Makefile.version