diff options
author | Marco Bonetti <sid77@slackware.it> | 2010-05-12 23:33:27 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:33:27 +0200 |
commit | 8b5073dcd04ce71ba30918d7ef8640b495aec360 (patch) | |
tree | 4815383f6c6342a4b57d929215c6e79b18771db0 /system/debootstrap/slackware.patch | |
parent | 0961fcf16047f233e2224a4898078f7d055a20d5 (diff) | |
download | slackbuilds-8b5073dcd04ce71ba30918d7ef8640b495aec360.tar.gz |
system/debootstrap: Added to 12.2 repository
Diffstat (limited to 'system/debootstrap/slackware.patch')
-rw-r--r-- | system/debootstrap/slackware.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/system/debootstrap/slackware.patch b/system/debootstrap/slackware.patch new file mode 100644 index 0000000000..9fb2e942f1 --- /dev/null +++ b/system/debootstrap/slackware.patch @@ -0,0 +1,34 @@ +diff -Naur debootstrap.orig/Makefile debootstrap/Makefile +--- debootstrap.orig/Makefile 2009-01-30 12:12:06.000000000 +0100 ++++ debootstrap/Makefile 2009-03-03 17:27:14.000000000 +0100 +@@ -1,7 +1,8 @@ + # avoid dpkg-dev dependency; fish out the version with sed + VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog) + +-ARCH := $(shell dpkg --print-architecture) ++# not needed ++#ARCH := $(shell dpkg --print-architecture) + + MAKEDEV := $(shell if [ -e /dev/MAKEDEV ]; then echo /dev/MAKEDEV; else echo /sbin/MAKEDEV; fi) + +@@ -10,7 +11,7 @@ + rm -f devices.tar.gz + rm -rf dev + +-DSDIR=$(DESTDIR)/usr/share/debootstrap ++DSDIR=$(DESTDIR)/usr/lib/debootstrap + install: + mkdir -p $(DSDIR)/scripts + mkdir -p $(DESTDIR)/usr/sbin +diff -Naur debootstrap.orig/debootstrap debootstrap/debootstrap +--- debootstrap.orig/debootstrap 2009-01-13 20:30:15.000000000 +0100 ++++ debootstrap/debootstrap 2009-03-03 17:28:16.000000000 +0100 +@@ -10,7 +10,7 @@ + if [ -x /debootstrap/debootstrap ]; then + DEBOOTSTRAP_DIR=/debootstrap + else +- DEBOOTSTRAP_DIR=/usr/share/debootstrap ++ DEBOOTSTRAP_DIR=/usr/lib/debootstrap + fi + fi + |