forked from pool/debootstrap
14cbd9b62d
- Version bump to 1.0.90 * Add (Ubuntu) artful as a symlink to gutsy. * Improve /dev/ptmx handling (deb#817236) * Add autopkgtest support to test various scenarios. * Uniformize COMPONENTS/USE_COMPONENTS handling. * Strip the arch-qualifier (deb#836525) * Default to split /usr again, as merged-/usr breaks dpkg-shlibdeps (deb#844221) * remove scratchbox2 support (deb#796189) * Reword split_inline_sig (deb#842591) * Add support for downloading and validating InRelease files, by splitting up detached signature from signed data. * Switch default mirror to deb.debian.org. * Add (Ubuntu) zesty as a symlink to gutsy. * Add jessie-kfreebsd to merged-/usr blacklist. * No longer Build-Depend on makedev. The code using it was already removed in debootstrap 1.0.82. * Do not use `tar -k` for older releases which might have file conflicts between the packages to be installed. (deb#838388) * Error out when seeing short options. (deb#548880) * Add oldoldstable -> sid script symlink. (deb#792734) * Add buster -> sid and bullseye -> sid script symlinks. * Only unpack and configure the base system when there are actually packages to install. (deb#825034) * debootstrap.8: Use stretch instead of wheezy in examples. * Enable merged-/usr by default. (deb#839046) * Add support for xz-compressed Packages indices. (deb#837649) * functions: Validate that the requested suite is listed in the Release file's Suite or Codename field. (deb#837075) * Add support for merged-/usr, enabled by a new --merged-usr option (deb#810301) Feign install of dpkg in second stage. This avoids problems when OBS-URL: https://build.opensuse.org/request/show/506822 OBS-URL: https://build.opensuse.org/package/show/devel:tools/debootstrap?expand=0&rev=33
15 lines
456 B
Diff
15 lines
456 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 8516803..21a9a39 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -11,8 +11,7 @@ install:
|
|
mkdir -p $(DESTDIR)/usr/sbin
|
|
|
|
cp -a scripts/* $(DSDIR)/scripts/
|
|
- install -o root -g root -m 0644 functions $(DSDIR)/
|
|
+ install -m 0644 functions $(DSDIR)/
|
|
|
|
sed 's/@VERSION@/$(VERSION)/g' debootstrap >$(DESTDIR)/usr/sbin/debootstrap
|
|
- chown root:root $(DESTDIR)/usr/sbin/debootstrap
|
|
chmod 0755 $(DESTDIR)/usr/sbin/debootstrap
|