summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Spitzbarth2008-02-03 13:16:21 +0100
committerMartin Spitzbarth2008-02-03 13:23:05 +0100
commitfa7be6bb0ac295863a253363892b69b5d64193b7 (patch)
tree70f8499069917c5743930651c49fd43c79c7fbf0
parent41179f478d38ca5f811c038463dbb7f08784a456 (diff)
ide-smart: Use make -B, install manpages to usr/share/man. Fixes bug#14266
-rwxr-xr-xdisk/ide-smart/BUILD5
-rw-r--r--disk/ide-smart/HISTORY6
-rwxr-xr-xdisk/ide-smart/PRE_BUILD4
3 files changed, 12 insertions, 3 deletions
diff --git a/disk/ide-smart/BUILD b/disk/ide-smart/BUILD
index 06e23847cb..e55d438c4d 100755
--- a/disk/ide-smart/BUILD
+++ b/disk/ide-smart/BUILD
@@ -1,3 +1,2 @@
-sedit "s:INSTALL_PREFIX=/usr/local:INSTALL_PREFIX=${INSTALL_ROOT}/usr:" Makefile &&
-rm ide-smart &&
-make
+# The tarball ships with precompiled binaries. Force make to recompile using -B
+make -B
diff --git a/disk/ide-smart/HISTORY b/disk/ide-smart/HISTORY
index b205cd918c..ec77414250 100644
--- a/disk/ide-smart/HISTORY
+++ b/disk/ide-smart/HISTORY
@@ -1,3 +1,9 @@
+2008-02-03 Martin Spitzbarth <m.spitzbarth@gmx.de>
+ * BUILD: moved a sed command to PRE_BUILD,
+ force compilation by using make -B (Bug #14266)
+ * PRE_BUILD: created, moved a sed command here from BUILD,
+ install manpages to usr/share/man instead of usr/man
+
2008-01-16 Ethan "eekee" Grammatikidis <eekee57@fastmail.fm>
* DETAILS: Fixed SOURCE_URL[0] to use $SOURCE
diff --git a/disk/ide-smart/PRE_BUILD b/disk/ide-smart/PRE_BUILD
new file mode 100755
index 0000000000..aab472cfe4
--- /dev/null
+++ b/disk/ide-smart/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+sedit "s:INSTALL_PREFIX=/usr/local:INSTALL_PREFIX=${INSTALL_ROOT}/usr:" Makefile &&
+sedit "s:/man/:/share/man/:" Makefile