this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix DEB Build (#594)

* Toolchain.cmake was removed in 49d29fa159

* Ignore debbuild

* Fix generated changelog

authored by

TheBrokenRail and committed by
Andrew Hyatt
f334841c d6150795

+4 -2
+2
.gitignore
··· 38 38 rpm/SOURCES 39 39 rpm/RPMS 40 40 rpm/SRPMS 41 + 42 + debbuild
+1 -1
debian/rules
··· 4 4 5 5 override_dh_auto_configure: 6 6 mkdir debbuild 7 - cd debbuild && CFLAGS="" CXXFLAGS="" CPPFLAGS="" LDFLAGS="" cmake .. -DCMAKE_TOOLCHAIN_FILE=../Toolchain.cmake -DCMAKE_INSTALL_PREFIX=/usr 7 + cd debbuild && CFLAGS="" CXXFLAGS="" CPPFLAGS="" LDFLAGS="" cmake .. -DCMAKE_INSTALL_PREFIX=/usr 8 8 9 9 override_dh_auto_build: 10 10 cd debbuild && $(MAKE) && make lkm_generate printwrapgen
+1 -1
tools/makedeb
··· 3 3 4 4 DATE=$(date +%Y%m%d) 5 5 rm -f debian/changelog 6 - EDITOR=true NAME="Darling build server" EMAIL=noreply@darlinghq.org dch -u low -v 0.1.${DATE}-1 --create --distribution testing "Daily build" 6 + EDITOR=true NAME="Darling build server" EMAIL=noreply@darlinghq.org dch -u low -v 0.1.${DATE}-1 --create --distribution testing --package darling "Daily build" 7 7 debuild -us -uc -b 8 8