diff options
author | Oliver Tappe | 2007-05-29 19:35:03 +0200 |
---|---|---|
committer | Oliver Tappe | 2007-05-29 19:35:03 +0200 |
commit | a463bb83d79e6d769962e53a1b677e93e03274c5 (patch) | |
tree | 92c586eacefe9550b0f424c468099650bd9c46a2 /Makefile | |
parent | Incomplete hwdata/pcitable, for the problem see #100 ... (diff) | |
download | core-a463bb83d79e6d769962e53a1b677e93e03274c5.tar.gz core-a463bb83d79e6d769962e53a1b677e93e03274c5.tar.xz core-a463bb83d79e6d769962e53a1b677e93e03274c5.zip |
* (hopefully) fixed problem with respect to wget repeatedly failing with
'files exists' errors under some circumstances: we now simply remove
that file and try again
* renamed 'export-filter.local' to 'export-filter' and 'clone-filter.local'
to 'clone-filter'
* completed example files for clone-filter and export-filter for all distros
* split distro-info in two parts: the static, shared part (now living in
/opt/openslx/share) and the configurable part living in /etc/opt/openslx.
This is the last part of settings file related changes, closing ticket#122
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1106 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -178,12 +178,18 @@ supported."; \ @cp bin/slx* $(DESTDIR)$(SLX_BIN_PATH)/; \ cp config-db/slx* $(DESTDIR)$(SLX_BIN_PATH)/; \ cp installer/slx* $(DESTDIR)$(SLX_BIN_PATH)/; \ - tar --exclude=.svn -cp -C lib OpenSLX distro-info | \ - tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ - tar --exclude=.svn -cp -C config-db OpenSLX | \ - tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ - tar --exclude=.svn -cp -C installer OpenSLX | \ - tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ + tar --exclude=.svn -cp -C lib OpenSLX \ + | tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ + tar --exclude=.svn --exclude *.example \ + -cp -C lib distro-info \ + | tar -xp -C $(DESTDIR)$(SLX_SHARE_PATH); \ + tar --exclude=.svn --exclude prereqfiles --exclude trusted-package-keys/* \ + -cp -C lib distro-info \ + | tar -xp -C $(DESTDIR)$(SLX_CONFIG_PATH); \ + tar --exclude=.svn -cp -C config-db OpenSLX \ + | tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ + tar --exclude=.svn -cp -C installer OpenSLX \ + | tar -xp -C $(DESTDIR)$(SLX_BASE_PATH)/lib; \ @ # link all binaries & scripts into user-path: @ln -sf $(SLX_BIN_PATH)/slx* $(DESTDIR)$(USR_BIN_PATH)/; \ |