dh-make指定包含低线_的构建目录

简介: dh-make指定包含低线_的构建目录

之前使用dh-make,都是使用<package>-<version>的格式。因为构建后的安装文件统一改用低线_,所以吾想构建目录也换成低线。然后报错了:


For dh_make to find the package name and version, the current directory
needs to be in the format of <package>-<version>.  Alternatively use the
_-p flag using the format <name>_<version> to override it.
The directory name you have specified is invalid!
Your current directory is:
/home/tsit/Linux-Builder-5.0/cn.ts-it.office_5.0.0.500
Perhaps you could try going to directory where the sources are?

  一开始没注意,后来仔细研究了一下,意思就是使用_要特别指定。于是吾就:


BUILD_ACTION_DIR=cn.ts-it.office_5.0.0.6
dh_make \
    -p ${BUILD_ACTION_DIR} \
    --createorig -s -y

  顺利完成。  

目录
打赏
0
0
0
0
17
分享
相关文章
|
10月前
|
【Makefile 相关 】Makefile中patsubst(扩展通配符)的含义
【Makefile 相关 】Makefile中patsubst(扩展通配符)的含义
264 0
Linux部署 cd-pwd命令,cd 不写参数 就直接回到用户的HOME目录,pwd 查看当前的工作目录,pwd是常看当前目录的路径,无参数
Linux部署 cd-pwd命令,cd 不写参数 就直接回到用户的HOME目录,pwd 查看当前的工作目录,pwd是常看当前目录的路径,无参数
Ngnix08源码的复杂安装, --prefix=PATH可以设置一些相关的路径,对./configure进行进行编译设置,--sbin-path=PATH可以启动文件,或者相make clean清屏
Ngnix08源码的复杂安装, --prefix=PATH可以设置一些相关的路径,对./configure进行进行编译设置,--sbin-path=PATH可以启动文件,或者相make clean清屏
|
10月前
好用的 自定义Makefile文件
好用的 自定义Makefile文件
55 0
[✔️]cmake command 无法使用通配符匹配文件,只能检索下目录指定文件
[✔️]cmake command 无法使用通配符匹配文件,只能检索下目录指定文件
288 0
[✔️]CMake生成的VisualStudio项目,Qt的头文件目录默认添加了编译选项,如何在添加到c++头文件目录
[✔️]CMake生成的VisualStudio项目,Qt的头文件目录默认添加了编译选项,如何在添加到c++头文件目录
199 0
make指定输出目录
make指定输出目录
381 0
cmake指定输出安装目录
cmake指定输出安装目录
193 0
dh-make指定包含低线_的构建目录
dh-make指定包含低线_的构建目录
182 0