summaryrefslogtreecommitdiff
path: root/appweb/appweb-1.2.0/nonrootinstall.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /appweb/appweb-1.2.0/nonrootinstall.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'appweb/appweb-1.2.0/nonrootinstall.patch')
-rw-r--r--appweb/appweb-1.2.0/nonrootinstall.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/appweb/appweb-1.2.0/nonrootinstall.patch b/appweb/appweb-1.2.0/nonrootinstall.patch
deleted file mode 100644
index 4227b76591..0000000000
--- a/appweb/appweb-1.2.0/nonrootinstall.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- appWeb-1.2.0/Makefile~nonrootinstall 2004-07-06 15:09:21.000000000 -0500
-+++ appWeb-1.2.0/Makefile 2004-07-15 13:45:32.000000000 -0500
-@@ -127,40 +127,33 @@
- #
- # Installation targets
- #
--install: install-rootCheck install-binary
--
--install-rootCheck:
-- @if [ $(BLD_OS) != WIN -a `id -u` -ne 0 ] ; \
-- then \
-- echo "Must be root to install" ; \
-- exit 255 ; \
-- fi
-+install: install-binary
-
--install-release: install-rootCheck
-+install-release:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall release
-
--install-binary: install-rootCheck
-+install-binary:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall binary
- @echo -e " #\n # To start ${BLD_NAME}, run as root:\n #"
- @echo -e " service ${BLD_PRODUCT} start\n"
-
--install-dev: install-rootCheck
-+install-dev:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall dev
-
--install-doc: install-rootCheck
-+install-doc:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall doc
-
--install-samples: install-rootCheck
-+install-samples:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall samples
-
--install-source: install-rootCheck
-+install-source:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall source
-
--install-all: install-rootCheck
-+install-all:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeInstall \
- "release binary dev doc samples source"
-
--uninstall: install-rootCheck
-+uninstall:
- @$(BLD_PRODUCT)/package/$(BLD_OS)/makeUninstall
-
- #