SHA256
1
0
forked from pool/kbuild
OBS User unknown 2008-06-22 05:47:58 +00:00 committed by Git OBS Bridge
parent 4a71892406
commit a07e8d551f
6 changed files with 31 additions and 26 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e84f685cc70d67c703372266f45990aedeec51da68f73f157f867c6503066be
size 1842227

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e29baccd413d7c10c08d483f5a4be9546833e28bc976b324404327b4d2bca28
size 1854034

View File

@ -0,0 +1,10 @@
--- Config.kmk.old 2008-05-04 16:26:48.000000000 +0200
+++ Config.kmk 2008-05-04 16:27:05.000000000 +0200
@@ -79,6 +79,7 @@
$(warning Neither SvnInfo nor .svn/* was found in the root. Will have to cook up something too keep the build happy.)
$(KBUILD_SVN_INFO_KMK):
$(RM) -f $@
+ @$(MKDIR) -p $(@D)
$(APPEND) $@ 'KBUILD_SVN_REV := 0'
$(APPEND) $@ 'KBUILD_SVN_URL := /dev/null'

View File

@ -3,6 +3,14 @@ Tue May 6 23:52:43 CEST 2008 - dmueller@suse.de
- fix uninit return values
-------------------------------------------------------------------
Sun May 4 14:04:34 CEST 2008 - suse-tux@gmx.de
- update to svn1599 in order to build virtualbox-ose 1.6.0
- added kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
- start the bootstrap with kBuild/env.sh --full because this sets all required
variables automagically
-------------------------------------------------------------------
Mon Apr 7 20:59:27 CEST 2008 - dmueller@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package kbuild (Version 0.1.2svn1480)
# spec file for package kbuild (Version 0.1.2svn1599)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -17,12 +17,12 @@ BuildRequires: bison flex libacl-devel
License: GPL v2 or later
Group: Development/Tools/Building
Summary: framework for writing simple makefiles for complex tasks
Version: 0.1.2svn1480
Release: 10
Version: 0.1.2svn1599
Release: 1
Source0: %name-%{version}.tar.bz2
Patch0: kbuild-man.diff
Patch1: warnings.diff
Patch2: uninit.diff
Patch2: kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -57,7 +57,7 @@ Authors:
%build
export CFLAGS="$RPM_OPT_FLAGS"
kBuild/env.sh make -f bootstrap.gmk SRCDIR=`pwd`
kBuild/env.sh --full make -f bootstrap.gmk SRCDIR=`pwd`
kBuild/env.sh kmk rebuild PATH_INS=`pwd`
pod2man -c 'kBuild for SUSE Linux' -r kBuild-%version kmk.pod > kmk.1
@ -78,6 +78,11 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Wed May 07 2008 dmueller@suse.de
- fix uninit return values
* Sun May 04 2008 suse-tux@gmx.de
- update to svn1599 in order to build virtualbox-ose 1.6.0
- added kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
- start the bootstrap with kBuild/env.sh --full because this sets all required
variables automagically
* Mon Apr 07 2008 dmueller@suse.de
- fix crash on x86_64
* Wed Apr 02 2008 dmueller@suse.de

View File

@ -1,18 +0,0 @@
--- src/kmk/kmkbuiltin/install.c
+++ src/kmk/kmkbuiltin/install.c
@@ -890,6 +890,7 @@ strip(const char *to_name)
(void)unlink(to_name);
errno = serrno;
err(EX_TEMPFAIL, "fork");
+ return errno;
case 0:
stripbin = getenv("STRIPBIN");
if (stripbin == NULL)
@@ -905,6 +906,7 @@ strip(const char *to_name)
/* NOTREACHED */
}
}
+ return 0;
#endif
}