From: Rafael A. de <raf...@ic...> - 2003-03-13 14:06:40
|
I have notice that the CUPS/Makefile.am now defines the environment variable OMNI_XML_ROOT_PATH. This has a problem when building packages. A deb package is configured with prefix set to /usr, but wen building prefix is redefined to a temporary directory. For example: ./configure --prefix=/usr .... make install prefix=/home/rafael/cvs/Omni/debian/tmp .... It is done this way so that the compile time options are set correctly (i.e they point to /usr). If the generation of the ppds would happen when compiling the package (i.e when make is executed) there would be no problem. But if they are generated when installing (make install) then the ppds will refer to /home/rafael/cvs/Omni/debian/tmp. Is it possible to change when the generation of the ppds happens? Another solution is to don't change the OMNI_XML_ROOT_PATH. This way I can make it be a empty string and the paths will be non-qualified. |