8db52c6e78
lsof is packaged as a tarball inside a .tar.bz2 package, so we have a post-extract hook to extract the source code tarball, so that for the next steps, lsof looks like a normal package. Signed-off-by: Martin Banky <Martin.Banky@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 lines
396 B
Diff
15 lines
396 B
Diff
diff -ru lsof_4.81.orig/lsof_4.81_src/lib/Makefile.skel lsof_4.81/lsof_4.81_src/lib/Makefile.skel
|
|
--- a/lib/Makefile.skel 2001-02-13 03:12:22.000000000 +0100
|
|
+++ b/lib/Makefile.skel 2006-11-29 13:51:44.000000000 +0100
|
|
@@ -21,8 +21,8 @@
|
|
all: ${LIB}
|
|
|
|
${LIB}: ${OBJ}
|
|
- ${AR}
|
|
- ${RANLIB}
|
|
+ ${AR} cr ${LIB} ${OBJ}
|
|
+ ${RANLIB} ${LIB}
|
|
|
|
clean: FRC
|
|
rm -f ${LIB} ${OBJ} errs Makefile.bak a.out core
|