Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #16061: Debian build of rudder-api-client fails due to already existing BUILD folder #2128

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rudder-api-client/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build: build-stamp
# Force python everywhere in 5.0
find . -type f | xargs sed -i '1,1s|#!/usr/bin/python3|#!/usr/bin/python|'
tar -xjf SOURCES/rudder-sources.tar.bz2
mkdir BUILD
mkdir -p BUILD
mv rudder-sources-*/* BUILD/

build-stamp: configure-stamp
Expand All @@ -30,6 +30,7 @@ clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
rm -rf BUILD

# Add here commands to clean up after the build process.

Expand All @@ -41,7 +42,6 @@ install: build
dh_prep
dh_installdirs

# Add here commands to install the package into debian/normation-openldap.

# Build architecture-independent files here.
binary-indep: install
Expand Down